From 4204c6ee7fb4db2204947282ac456267d239b680 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Tue, 18 May 2010 15:51:12 +0200 Subject: [PATCH] Fix typos. --- bacula/src/filed/acl.c | 4 ++-- bacula/src/filed/acl.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index b2a2e29eec..c26a4157e0 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -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) diff --git a/bacula/src/filed/acl.h b/bacula/src/filed/acl.h index 911360db66..79dc53c8a1 100644 --- a/bacula/src/filed/acl.h +++ b/bacula/src/filed/acl.h @@ -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 -- 2.39.5