diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2009-10-12 00:33:01 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-12 22:19:35 -0700 |
commit | 1ba447b8dc2ec4e6c8ebbbdaa449f38edc29ad3f (patch) | |
tree | 86e65a3309a7bbcc7e9cfb0ba9e93d117f1634ad /builtin-check-ref-format.c | |
parent | 38eedc634bc5d30e8a7a2356d9eb3ae95d9b1d75 (diff) | |
download | git-1ba447b8dc2ec4e6c8ebbbdaa449f38edc29ad3f.tar.gz |
check-ref-format: simplify --print implementation
normalize_path_copy() is a complicated function, but most of its
functionality will never apply to a ref name that has been checked
with check_ref_format().
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-check-ref-format.c')
-rw-r--r-- | builtin-check-ref-format.c | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/builtin-check-ref-format.c b/builtin-check-ref-format.c index b97b61a0a4..e3e7bdf52f 100644 --- a/builtin-check-ref-format.c +++ b/builtin-check-ref-format.c @@ -7,6 +7,28 @@ #include "builtin.h" #include "strbuf.h" +/* + * Replace each run of adjacent slashes in src with a single slash, + * and write the result to dst. + * + * This function is similar to normalize_path_copy(), but stripped down + * to meet check_ref_format's simpler needs. + */ +static void collapse_slashes(char *dst, const char *src) +{ + char ch; + char prev = '\0'; + + while ((ch = *src++) != '\0') { + if (prev == '/' && ch == prev) + continue; + + *dst++ = ch; + prev = ch; + } + *dst = '\0'; +} + int cmd_check_ref_format(int argc, const char **argv, const char *prefix) { if (argc == 3 && !strcmp(argv[1], "--branch")) { @@ -22,8 +44,7 @@ int cmd_check_ref_format(int argc, const char **argv, const char *prefix) if (check_ref_format(argv[2])) exit(1); - if (normalize_path_copy(refname, argv[2])) - die("Could not normalize ref name '%s'", argv[2]); + collapse_slashes(refname, argv[2]); printf("%s\n", refname); exit(0); } |