fix a bug affecting AFS where nmh was setting the READONLY flag for a
authorOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 18 May 2005 12:57:40 +0000 (12:57 +0000)
committerOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 18 May 2005 12:57:40 +0000 (12:57 +0000)
folder even when you do have write access to the folder

ChangeLog
sbr/folder_read.c

index 0a0d477..644f429 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2005-05-18  Oliver Kiddle  <okiddle@yahoo.co.uk>
 
+       * savannah@brisammon.fastmail.fm: sbr/folder_read.c: fix a bug
+       affecting AFS where nmh was setting the READONLY flag for a
+       folder even when you do have write access to the folder
+
        * Carl Mummert: h/fmt_compile.h, man/mh-format.man,
        sbr/fmt_compile.c, sbr/fmt_scan.c: add unquote() function for
        removing quotes from RFC-2822 encoded headers
index 2e67917..6cd0d10 100644 (file)
@@ -57,7 +57,7 @@ folder_read (char *name)
     mp->numsel = 0;
     mp->nummsg = 0;
 
-    if (access (name, W_OK) == -1 || st.st_uid != getuid())
+    if (access (name, W_OK) == -1)
        set_readonly (mp);
     prefix_len = strlen(BACKUP_PREFIX);