summaryrefslogtreecommitdiff
path: root/strbuf.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-05-22 09:44:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-05-23 19:39:44 (GMT)
commit88d5a6f6cd1b63e1637027322cdfdbeefe38c3ed (patch)
tree5bb6adf34ea3a774df7f1645bf9de485542ef028 /strbuf.c
parent7bbc4e8fdb33e0a8e42e77cc05460d4c4f615f4d (diff)
downloadgit-88d5a6f6cd1b63e1637027322cdfdbeefe38c3ed.zip
git-88d5a6f6cd1b63e1637027322cdfdbeefe38c3ed.tar.gz
git-88d5a6f6cd1b63e1637027322cdfdbeefe38c3ed.tar.bz2
daemon/config: factor out duplicate xstrdup_tolower
We have two implementations of the same function; let's drop that to one. We take the name from daemon.c, but the implementation (which is just slightly more efficient) from the config code. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.c')
-rw-r--r--strbuf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/strbuf.c b/strbuf.c
index 1170d01..e26cb2c 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -570,3 +570,16 @@ int fprintf_ln(FILE *fp, const char *fmt, ...)
return -1;
return ret + 1;
}
+
+char *xstrdup_tolower(const char *string)
+{
+ char *result;
+ size_t len, i;
+
+ len = strlen(string);
+ result = xmalloc(len + 1);
+ for (i = 0; i < len; i++)
+ result[i] = tolower(string[i]);
+ result[i] = '\0';
+ return result;
+}