Diff for /libaitsync/src/dir.c between versions 1.2.2.1 and 1.2.2.2

version 1.2.2.1, 2011/05/09 15:02:52 version 1.2.2.2, 2011/05/09 15:04:38
Line 187  create_diridx(const char *csDir, int lm, int *tags, st Line 187  create_diridx(const char *csDir, int lm, int *tags, st
                                                 break;                                                  break;
                                 }                                  }
                                 snprintf(l[n].extra, STRSIZ, "%s links=%d inode=%ld %d:%d perm=0%o size=%ld %s",                                   snprintf(l[n].extra, STRSIZ, "%s links=%d inode=%ld %d:%d perm=0%o size=%ld %s", 
                                                szType, sb.st_nlink, (int64_t) sb.st_ino, sb.st_uid, sb.st_gid,                                                 szType, sb.st_nlink, (long) sb.st_ino, sb.st_uid, sb.st_gid, 
                                                sb.st_mode & 0x1fff, (int64_t) sb.st_size, szStr);                                                sb.st_mode & 0x1fff, (long) sb.st_size, szStr);
                         }                          }
                 }                  }
   
Line 406  sync_dircmpList(const char *csDir1, const char *csDir2 Line 406  sync_dircmpList(const char *csDir1, const char *csDir2
                                                 }                                                  }
                                                 snprintf(l[n].extra, STRSIZ,                                                   snprintf(l[n].extra, STRSIZ, 
                                                                 "%s links=%d inode=%ld %d:%d perm=0%o size=%ld %s",                                                                   "%s links=%d inode=%ld %d:%d perm=0%o size=%ld %s", 
                                                                szType, sb.st_nlink, (int64_t) sb.st_ino, sb.st_uid,                                                                 szType, sb.st_nlink, (long) sb.st_ino, sb.st_uid, 
                                                                sb.st_gid, sb.st_mode & 0x1fff, (int64_t) sb.st_size,                                                                 sb.st_gid, sb.st_mode & 0x1fff, (long) sb.st_size, 
                                                                 szStr);                                                                  szStr);
                                         }                                          }
                                 }                                  }

Removed from v.1.2.2.1  
changed lines
  Added in v.1.2.2.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>