From: Dan Fandrich Date: Thu, 20 Sep 2007 00:37:08 +0000 (+0000) Subject: Fixed typo in error message. X-Git-Tag: curl-7_17_1~211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2620d78e9475e5285cfc192e36f79b0167050175;p=curl Fixed typo in error message. --- diff --git a/src/urlglob.c b/src/urlglob.c index 97b73f28a..73b02c6bd 100644 --- a/src/urlglob.c +++ b/src/urlglob.c @@ -186,7 +186,7 @@ static GlobCode glob_range(URLGlob *glob, char *pattern, if ((rc < 3) || (min_c >= max_c) || ((max_c - min_c) > ('z' - 'a'))) { /* the pattern is not well-formed */ snprintf(glob->errormsg, sizeof(glob->errormsg), - "errpr: bad range specification after pos %d\n", pos); + "error: bad range specification after pos %d\n", pos); return GLOB_ERROR; }