From bfda5b1b584c85c84d876d59a2f1cca6bffa5f81 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 10 Jun 2008 08:14:45 +0000 Subject: [PATCH] fix typo --- ext/standard/head.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/standard/head.c b/ext/standard/head.c index 545f072e47..d5903d4460 100644 --- a/ext/standard/head.c +++ b/ext/standard/head.c @@ -70,12 +70,12 @@ PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, t int result; if (name && strpbrk(name, "=,; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ - zend_error( E_WARNING, "Cookie names can not contain any of the folllowing '=,; \\t\\r\\n\\013\\014'" ); + zend_error( E_WARNING, "Cookie names can not contain any of the following '=,; \\t\\r\\n\\013\\014'" ); return FAILURE; } if (!url_encode && value && strpbrk(value, ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ - zend_error( E_WARNING, "Cookie values can not contain any of the folllowing ',; \\t\\r\\n\\013\\014'" ); + zend_error( E_WARNING, "Cookie values can not contain any of the following ',; \\t\\r\\n\\013\\014'" ); return FAILURE; } -- 2.50.1