Change parent syntax to "xyz^" instead of "xyz.p"
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 21 Jun 2005 04:06:47 +0000 (21:06 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 21 Jun 2005 04:06:47 +0000 (21:06 -0700)
The ".pN" thing might be a common ending of a tag, and in
contrast, ^ already is a special character for revisions
so use that instead.

rev-parse.c

index 1b08b45..40707ac 100644 (file)
@@ -62,7 +62,7 @@ static int get_parent(char *name, unsigned char *result, int idx)
 
 /*
  * This is like "get_sha1()", except it allows "sha1 expressions",
- * notably "xyz.p" for "parent of xyz"
+ * notably "xyz^" for "parent of xyz"
  */
 static int get_extended_sha1(char *name, unsigned char *sha1)
 {
@@ -70,15 +70,15 @@ static int get_extended_sha1(char *name, unsigned char *sha1)
        int len = strlen(name);
 
        parent = 1;
-       if (len > 3 && name[len-1] >= '1' && name[len-1] <= '9') {
+       if (len > 2 && name[len-1] >= '1' && name[len-1] <= '9') {
                parent = name[len-1] - '0';
                len--;
        }
-       if (len > 2 && !memcmp(name + len - 2, ".p", 2)) {
+       if (len > 1 && name[len-1] == '^') {
                int ret;
-               name[len-2] = 0;
+               name[len-1] = 0;
                ret = get_parent(name, sha1, parent);
-               name[len-2] = '.';
+               name[len-1] = '^';
                if (!ret)
                        return 0;
        }