[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Missing paren in filedir.c
From: |
Armin Wolfermann |
Subject: |
Missing paren in filedir.c |
Date: |
Mon, 12 Jan 2004 17:57:14 +0100 |
User-agent: |
Mutt/1.5.5i |
Seems nobody tried 2.1.1 with HAVE_CHFLAGS yet:
--- src/filedir.c.orig Mon Jan 12 17:50:45 2004
+++ src/filedir.c Mon Jan 12 17:51:01 2004
@@ -554,7 +554,7 @@
return;
}
#else
-if (((newperm & 07777) == (dstat->st_mode & 07777) && (action != touch)) /*
file okay */
+if (((newperm & 07777) == (dstat->st_mode & 07777)) && (action != touch))
/* file okay */
{
Debug("File okay, newperm = %o, stat = %o\n",(newperm &
07777),(dstat->st_mode & 07777));
fixmode = false;
- Missing paren in filedir.c,
Armin Wolfermann <=