X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Ffolder_read.c;h=6cd0d109305dc180398c4fdf392b722950fa0bb7;hb=e79165e0c2c80b68ece9aaf418a59c6a169a17f5;hp=0d0129320158fcf21c808c466bb7c79a0fa8bc74;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/sbr/folder_read.c b/sbr/folder_read.c index 0d01293..6cd0d10 100644 --- a/sbr/folder_read.c +++ b/sbr/folder_read.c @@ -3,6 +3,10 @@ * folder_read.c -- initialize folder structure and read folder * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include @@ -53,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); @@ -66,7 +70,7 @@ folder_read (char *name) adios (NULL, "unable to allocate storage"); while ((dp = readdir (dd))) { - if ((msgnum = m_atoi (dp->d_name))) { + if ((msgnum = m_atoi (dp->d_name)) && msgnum > 0) { /* * Check if we need to allocate more * temporary elements for message names.