]> sourceware.org Git - lvm2.git/commitdiff
pre-release
authorAlasdair Kergon <agk@redhat.com>
Wed, 14 Apr 2010 18:54:37 +0000 (18:54 +0000)
committerAlasdair Kergon <agk@redhat.com>
Wed, 14 Apr 2010 18:54:37 +0000 (18:54 +0000)
daemons/clvmd/clvmd.c
daemons/dmeventd/dmeventd.c

index 93f370380ad606ced06f9c3fff9cd33183964e89..d571bb657576dfeb4f7bd336ba6a8821ca9353f7 100644 (file)
@@ -365,7 +365,7 @@ int main(int argc, char *argv[])
         * used by some glibc (on some distributions it takes over 100MB).
         * Daemon currently needs to use mlockall().
         */
-       if (setenv("LANG", "C", 1) != 0)
+       if (setenv("LANG", "C", 1))
                perror("Cannot set LANG to C");
 
        /* Fork into the background (unless requested not to) */
index d8e90bf25c4dcf8bf501c3878ea47fa5d8ca24f2..6d1fcd0ddc5b6ac41b5f32e410486fc1b735d311 100644 (file)
@@ -1703,7 +1703,7 @@ int main(int argc, char *argv[])
         * used by some glibc (on some distributions it takes over 100MB).
         * Daemon currently needs to use mlockall().
         */
-       if (!setenv("LANG", "C", 1))
+       if (setenv("LANG", "C", 1))
                perror("Cannot set LANG to C");
 
        if (!_debug)
This page took 0.038011 seconds and 5 git commands to generate.