]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix compiler warnings in acl and xattr code
authorKern Sibbald <kern@sibbald.com>
Sun, 9 Aug 2009 14:09:48 +0000 (16:09 +0200)
committerKern Sibbald <kern@sibbald.com>
Sun, 9 Aug 2009 14:09:48 +0000 (16:09 +0200)
bacula/src/filed/acl.c
bacula/src/filed/xattr.c
bacula/technotes

index 5a26b80abe819479acaf7530822e1401abba6949..ca8313a2e3b3ae12aaa6b01a5557a38c50f26a54 100644 (file)
@@ -592,7 +592,7 @@ static bacl_exit_code generic_build_acl_streams(JCR *jcr, FF_PKT *ff_pkt)
 
 static bacl_exit_code generic_parse_acl_streams(JCR *jcr, int stream)
 {
-   int cnt;
+   unsigned int cnt;
 
    switch (stream) {
    case STREAM_UNIX_ACCESS_ACL:
@@ -1240,7 +1240,7 @@ bacl_exit_code build_acl_streams(JCR *jcr, FF_PKT *ff_pkt)
 
 bacl_exit_code parse_acl_streams(JCR *jcr, int stream)
 {
-   int cnt;
+   unsigned int cnt;
 
    switch (stream) {
    case STREAM_UNIX_ACCESS_ACL:
index 20a438e64b82841a7ce5dc54ac805dd3341a3d14..c444d62093acbc9348067dcfbbd2b55aa0a22f21 100644 (file)
@@ -1868,7 +1868,7 @@ bxattr_exit_code build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt)
 
 bxattr_exit_code parse_xattr_streams(JCR *jcr, int stream)
 {
-   int cnt;
+   unsigned int cnt;
 
    if (os_parse_xattr_streams) {
       /*
index e5c7ea8c15730ede5a4457ce13efde37ad3b810a..6a20153a9a5b7c9f4a231266668ffa0590a85a3d 100644 (file)
@@ -3,6 +3,7 @@
 General:
 
 09Aug09
+kes  Fix compiler warnings in acl and xattr code
 kes  Fix screw up with setting JobLevel and JobType
 kes  Change version
 kes  Apply Marco's acl/xattr rework code