X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=convert-objects.c;h=90e7900e6d7aff2fadf9ba04f8d982733493411c;hb=4fb5fd5d301;hp=4809f9199fa21dcd95ab508e26196080d49e8e88;hpb=0a98f9d13802880a68ce6564b9f47b1c3e3341c7;p=git.git diff --git a/convert-objects.c b/convert-objects.c index 4809f9199..90e7900e6 100644 --- a/convert-objects.c +++ b/convert-objects.c @@ -88,7 +88,7 @@ static int write_subdirectory(void *buffer, unsigned long size, const char *base unsigned int mode; char *slash, *origpath; - if (!path || sscanf(buffer, "%o", &mode) != 1) + if (!path || strtoul_ui(buffer, 8, &mode)) die("bad tree conversion"); mode = convert_mode(mode); path++; @@ -194,7 +194,7 @@ static unsigned long parse_oldstyle_date(const char *buf) fmt++; } while (*buf && *fmt); printf("left: %s\n", buf); - return mktime(&tm); + return mktime(&tm); } static int convert_date_line(char *dst, void **buf, unsigned long *sp)