On Fri, Apr 23, 2010 at 04:40:36PM +0200, Jilles Tjoelker wrote: > The patch: > > Index: lib/libc/nls/msgcat.c > =================================================================== > --- lib/libc/nls/msgcat.c (revision 206760) > +++ lib/libc/nls/msgcat.c (working copy) > @@ -138,6 +138,9 @@ > lang = "C"; > } > > + if (strcmp(lang, "C") == 0) > + NLRETERR(ENOENT); > + > /* Try to get it from the cache first */ > RLOCK(NLERR); > SLIST_FOREACH(np, &cache, list) {
This is wrong. Just because you are in the C locale doesn't mean that you don't have a message cataloge. Joerg _______________________________________________ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"