diff options
author | Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de> | 2006-01-26 12:26:15 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-26 18:13:54 -0800 |
commit | e974c9ab03c3c149bfc7da663167c6e59a7659f7 (patch) | |
tree | f4e2488a982d27cf755f5787e19589619150190c | |
parent | Remove unneeded header (diff) | |
download | tgif-e974c9ab03c3c149bfc7da663167c6e59a7659f7.tar.xz |
Use symbolic name SHORT_NAME_AMBIGUOUS as error return value
Signed-off-by: Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | sha1_name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_name.c b/sha1_name.c index b13ed78cee..e18a96d772 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -143,7 +143,7 @@ static int find_unique_short_object(int len, char *canonical, } /* Both have unique ones -- do they match? */ if (memcmp(packed_sha1, unpacked_sha1, 20)) - return -2; + return SHORT_NAME_AMBIGUOUS; memcpy(sha1, packed_sha1, 20); return 0; } |