bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug in yesterday's changes to install.c


From: John Paul Wallington
Subject: bug in yesterday's changes to install.c
Date: Fri, 30 Jul 2004 16:25:54 +0100

After Paul's int to bool cleanup (revision 1.164 of install.c) the
testcase /tests/install/create-leading fails.

--- install.c   30 Jul 2004 15:33:37 +0100      1.164
+++ install.c   30 Jul 2004 16:06:47 +0100      
@@ -428,8 +428,8 @@
         that this option is intended mainly to help installers when the
         distribution doesn't provide proper install rules.  */
 #define DIR_MODE (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
-      ok = make_path (dest_dir, DIR_MODE, DIR_MODE, owner_id, group_id, false,
-                     (x->verbose ? _("creating directory %s") : NULL));
+      ok = ! make_path (dest_dir, DIR_MODE, DIR_MODE, owner_id, group_id, 
false,
+                       (x->verbose ? _("creating directory %s") : NULL));
     }
 
   if (ok)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]