Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/builtin/mktree.c

    r626 r782  
    2424                die("path %s contains slash", path);
    2525
    26         if (alloc <= used) {
    27                 alloc = alloc_nr(used);
    28                 entries = xrealloc(entries, sizeof(*entries) * alloc);
    29         }
     26        ALLOC_GROW(entries, used + 1, alloc);
    3027        ent = entries[used++] = xmalloc(sizeof(**entries) + len + 1);
    3128        ent->mode = mode;
     
    6562
    6663static const char *mktree_usage[] = {
    67         "git mktree [-z] [--missing] [--batch]",
     64        N_("git mktree [-z] [--missing] [--batch]"),
    6865        NULL
    6966};
     
    151148
    152149        const struct option option[] = {
    153                 OPT_SET_INT('z', NULL, &line_termination, "input is NUL terminated", '\0'),
    154                 OPT_SET_INT( 0 , "missing", &allow_missing, "allow missing objects", 1),
    155                 OPT_SET_INT( 0 , "batch", &is_batch_mode, "allow creation of more than one tree", 1),
     150                OPT_SET_INT('z', NULL, &line_termination, N_("input is NUL terminated"), '\0'),
     151                OPT_SET_INT( 0 , "missing", &allow_missing, N_("allow missing objects"), 1),
     152                OPT_SET_INT( 0 , "batch", &is_batch_mode, N_("allow creation of more than one tree"), 1),
    156153                OPT_END()
    157154        };
Note: See TracChangeset for help on using the changeset viewer.