From: Richard Jones Date: Thu, 13 Aug 2009 16:16:14 +0000 (+0100) Subject: appliance: Replace LANG=C with LC_ALL=C X-Git-Tag: 1.0.67~3 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=98334f9d3a9120c829c5efacfe402b2cf6254ca2 appliance: Replace LANG=C with LC_ALL=C --- diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 4a14c75..b013661 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -188,7 +188,7 @@ main (int argc, char *argv[]) */ setenv ("PATH", "/usr/bin:/bin", 1); setenv ("SHELL", "/bin/sh", 1); - setenv ("LANG", "C", 1); + setenv ("LC_ALL", "C", 1); /* We document that umask defaults to 022 (it should be this anyway). */ umask (022);