]> git.sur5r.net Git - bacula/bacula/commitdiff
Fixed two typos while implementing new Solaris xattr code.
authorMarco van Wieringen <mvw@planets.elm.net>
Fri, 6 Feb 2009 14:04:15 +0000 (14:04 +0000)
committerMarco van Wieringen <mvw@planets.elm.net>
Fri, 6 Feb 2009 14:04:15 +0000 (14:04 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8425 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/filed/acl.c

index c46da038bd408812f57d95d88818ac5da389104f..72ed49c336333eae4b0a42b92e33694753a37ce6 100644 (file)
@@ -59,7 +59,7 @@
   
 /*
  * List of supported OSs. Everything outside that gets stub functions.
- * Also when XATTR support is explicitly disabled.
+ * Also when ACL support is explicitly disabled.
  * Not sure if all the HAVE_XYZ_OS are correct for autoconf.
  * The ones that says man page, are coded according to man pages only.
  */
@@ -1151,7 +1151,7 @@ static bool solaris_build_acl_streams(JCR *jcr, FF_PKT *ff_pkt);
    char *acl_text;
 
    n = acl(jcr->last_fname, GETACLCNT, 0, NULL);
-   if (n < MIN_ACL_ENTRIES) {
+   if (n < MIN_ACL_ENTRIES)
       return false;
 
    acls = (aclent_t *)malloc(n * sizeof(aclent_t));