diff options
Diffstat (limited to 'server/gen_test_char.c')
-rw-r--r-- | server/gen_test_char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/gen_test_char.c b/server/gen_test_char.c index cd20577e6a..6c6566ec3c 100644 --- a/server/gen_test_char.c +++ b/server/gen_test_char.c @@ -123,7 +123,7 @@ int main(int argc, char *argv[]) /* Stop for any non-'token' character, including ctrls, obs-text, * and "tspecials" (RFC2068) a.k.a. "separators" (RFC2616), which - * is easer to express as characters remaining in the ASCII token set + * is easier to express as characters remaining in the ASCII token set */ if (!c || !(apr_isalnum(c) || strchr("!#$%&'*+-.^_`|~", c))) { flags |= T_HTTP_TOKEN_STOP; |