+2006-04-16 Erez Zadok <ezk@cs.sunysb.edu>
+
+ * libamu/mtab.c (hasmntval): fix inverted meaning of error from
+ hasmntvalerr().
+
2006-04-14 Erez Zadok <ezk@cs.sunysb.edu>
* libamu/mount_fs.c (compute_nfs_attrcache_flags): use new
int err, val = 0;
err = hasmntvalerr(mnt, opt, &val);
- if (!err) /* if there was an error */
+ if (err) /* if there was an error (hasmntvalerr returned 1) */
return 0; /* redundant: val==0 above, but leave here for clarity */
/* otherwise there was no error */
return val;