]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix some comments
authorMarco van Wieringen <mvw@planets.elm.net>
Fri, 9 Oct 2009 13:07:39 +0000 (15:07 +0200)
committerMarco van Wieringen <mvw@planets.elm.net>
Fri, 9 Oct 2009 13:07:39 +0000 (15:07 +0200)
bacula/src/filed/xattr.c

index bc750a9e009f1bc060895b8938c3ca4146601237..82047af18d1afa6184cac93e98f2078c2eb38490 100644 (file)
@@ -711,6 +711,11 @@ static bxattr_exit_code bsd_build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt)
        */
       for (index = 0; index < xattr_list_len; index += xattr_list[index] + 1) {
          skip_xattr = false;
+
+         /*
+          * 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.
+          */
          bsnprintf(current_attrname, sizeof(current_attrname), "%*.*s",
                    xattr_list[index], xattr_list[index], xattr_list + (index + 1));
 
@@ -727,8 +732,7 @@ 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.
+          * Create a tupple of the current attrnamespace and attrname.
           */
          bsnprintf(current_attrtuple, sizeof(current_attrtuple), "%s.%s", current_attrnamespace, current_attrname);