Fixed typo in error message.

This commit is contained in:
Dan Fandrich 2007-09-20 00:37:08 +00:00
parent 8c3f40ee32
commit 2620d78e94

View File

@ -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;
}