]> git.sur5r.net Git - bacula/bacula/commitdiff
Replace MIN by code as recommended by Marco to avoid compiler warning
authorKern Sibbald <kern@sibbald.com>
Sun, 21 Feb 2010 16:38:46 +0000 (17:38 +0100)
committerKern Sibbald <kern@sibbald.com>
Sun, 21 Feb 2010 18:25:55 +0000 (19:25 +0100)
bacula/src/filed/xattr.c

index b4a4f37475148861a6de251b9d0b2b5c5e9ab329..97e5c5c2082e37e7629760935048d97388e2c036 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2008-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2008-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -749,7 +749,10 @@ static bxattr_exit_code bsd_build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt)
           * Print the current name into the buffer as its not null terminated we need to
           * use the length encoded in the string for copying only the needed bytes.
           */
-         cnt = MIN((int)(sizeof(current_attrname) - 1), xattr_list[index]);
+         cnt = xattr_list[index];
+         if (cnt > ((int)sizeof(current_attrname) - 1)) {
+            cnt = ((int)sizeof(current_attrname) - 1);
+         }
          strncpy(current_attrname, xattr_list + (index + 1), cnt);
          current_attrname[cnt] = '\0';