diff options
author | David Barr <davidbarr@google.com> | 2012-06-01 00:41:27 +1000 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2012-07-05 23:26:52 -0500 |
commit | d8d8708bd6a56818ee3a85007e36a8ff201f9512 (patch) | |
tree | fe59fee35148e9ff28e3d6f3eab6d948aacce31e /vcs-svn | |
parent | 4a1613194af218afb99be0e14af449e86852d06e (diff) | |
download | git-d8d8708bd6a56818ee3a85007e36a8ff201f9512.tar.gz |
vcs-svn: use constcmp instead of prefixcmp
Since the length of t is already known, we can simplify a little by
using memcmp() instead of strncmp() to carry out a prefix comparison.
All nearby code already does this.
Noticed in the standalone svn-dump-fast-export project which has not
needed to implement prefixcmp() yet.
Signed-off-by: David Barr <davidbarr@google.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'vcs-svn')
-rw-r--r-- | vcs-svn/svndump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c index f6c0d4c8a0..c5d07a6687 100644 --- a/vcs-svn/svndump.c +++ b/vcs-svn/svndump.c @@ -361,7 +361,7 @@ void svndump_read(const char *url) reset_rev_ctx(atoi(val)); break; case sizeof("Node-path"): - if (prefixcmp(t, "Node-")) + if (constcmp(t, "Node-")) continue; if (!constcmp(t + strlen("Node-"), "path")) { if (active_ctx == NODE_CTX) |