daemon: Allow utimens to work for directories (RHBZ#761451).
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 8 Dec 2011 11:15:18 +0000 (11:15 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 8 Dec 2011 11:15:18 +0000 (11:15 +0000)
You don't need to open the file O_WRONLY in order to call futimens on
the file descriptor.  Opening it O_WRONLY fails for directories.
Therefore open O_RDONLY instead.

daemon/utimens.c

index ae006c6..a9857db 100644 (file)
@@ -37,7 +37,7 @@ do_utimens (const char *path,
   int r;
 
   CHROOT_IN;
-  fd = open (path, O_WRONLY | O_NOCTTY);
+  fd = open (path, O_RDONLY | O_NOCTTY);
   CHROOT_OUT;
 
   if (fd == -1) {