]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typos.
authorMarco van Wieringen <mvw@planets.elm.net>
Tue, 18 May 2010 13:51:12 +0000 (15:51 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:50 +0000 (16:53 +0200)
bacula/src/filed/acl.c
bacula/src/filed/acl.h

index b2a2e29eece8e8065eb476cfa93cddb7ea226a16..c26a4157e063045b34775495015a6bf88ded80fa 100644 (file)
@@ -1333,7 +1333,7 @@ bacl_exit_code build_acl_streams(JCR *jcr, FF_PKT *ff_pkt)
     * it with the current st_dev in the last stat performed on
     * the file we are currently storing.
     */
-   if (jcr->acl_data->current_dev != ff_pkt->statp->st_dev) {
+   if (jcr->acl_data->current_dev != ff_pkt->statp.st_dev) {
       /**
        * Reset the acl save flags.
        */
@@ -1356,7 +1356,7 @@ bacl_exit_code build_acl_streams(JCR *jcr, FF_PKT *ff_pkt)
       /**
        * Save that we started scanning a new filesystem.
        */
-      jcr->acl_data->current_dev = ff_pkt->statp->st_dev;
+      jcr->acl_data->current_dev = ff_pkt->statp.st_dev;
    }
 
 #if defined(HAVE_AFS_ACL)
index 911360db6697d87b03d2cae3ca3f786d99286778..79dc53c8a14158aefc45a3099438b43eae873b74 100644 (file)
@@ -80,7 +80,7 @@ struct acl_data_t {
    uint32_t content_length;
    uint32_t nr_errors;
    uint32_t current_dev;
-   uint32_t flags;             /* See BACL_FLAG_*
+   uint32_t flags;             /* See BACL_FLAG_* */
 };
 
 #endif