git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sanitize --abbrev option for describe
@ 2006-11-02  1:15 Han-Wen Nienhuys
  0 siblings, 0 replies; only message in thread
From: Han-Wen Nienhuys @ 2006-11-02  1:15 UTC (permalink / raw)
  To: git

[-- Attachment #1: Type: text/plain, Size: 289 bytes --]


Hi,

the --abbrev option doesn't allow a 40 digit SHA1 output.

The following patch fixes this, and uses a IMHO more logical way to 
compute the abbrev parameter, so --abbrev=52 will still yield a 40 digit 
SHA1.


-- 
  Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen

[-- Attachment #2: ps --]
[-- Type: text/plain, Size: 1059 bytes --]

commit 62ab49fb3a050cb2a4c96fa0ab8064742544369b
Author: Han-Wen Nienhuys <hanwen@lilypond.org>
Date:   Thu Nov 2 02:12:11 2006 +0100

    use constant variable for storing "--abbrev=".  Use 40 and
    MINIMUM_ABBREV as bounds for --abbrev= argument.

diff --git a/describe.c b/describe.c
index ab192f8..973520c 100644
--- a/describe.c
+++ b/describe.c
@@ -141,6 +141,7 @@ static void describe(const char *arg, in
 
 int main(int argc, char **argv)
 {
+	char const *abbrev_option = "--abbrev=";
 	int i;
 
 	for (i = 1; i < argc; i++) {
@@ -152,10 +153,10 @@ int main(int argc, char **argv)
 			all = 1;
 		else if (!strcmp(arg, "--tags"))
 			tags = 1;
-		else if (!strncmp(arg, "--abbrev=", 9)) {
-			abbrev = strtoul(arg + 9, NULL, 10);
-			if (abbrev < MINIMUM_ABBREV || 40 < abbrev)
-				abbrev = DEFAULT_ABBREV;
+		else if (!strncmp(arg, abbrev_option, strlen (abbrev_option))) {
+			abbrev = strtoul(arg + strlen (abbrev_option), NULL, 10);
+			abbrev = MAX(MINIMUM_ABBREV, abbrev);
+			abbrev = MIN(40, abbrev);
 		}
 		else
 			usage(describe_usage);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-11-02  1:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-02  1:15 [PATCH] sanitize --abbrev option for describe Han-Wen Nienhuys

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).