Show
Ignore:
Timestamp:
2000-06-08 22:51:33 (8 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Fix some typos in the nl_langinfo stuff.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.c

    r1885 r1888  
    6262  for (d = s = buff; *s; s++) 
    6363  { 
    64     if (!strstr ("-_.", *s)) 
     64    if (!strchr ("-_.", *s)) 
    6565      *d++ = *s; 
    6666  } 
     
    8080  else if (!strncasecmp (buff, "windows", 7)) 
    8181  { 
    82     snprintf (buff2, sizeof (buff2), "windows-%s" buff + 7); 
     82    snprintf (buff2, sizeof (buff2), "windows-%s", buff + 7); 
    8383  } 
    8484