My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b697d92
)
commit: use strbuf_add() to add a length-limited string
author
René Scharfe
<l.s.r@web.de>
Sat, 7 Dec 2019 11:16:04 +0000
(12:16 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 9 Dec 2019 19:25:27 +0000
(11:25 -0800)
This is shorter and simpler.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
patch
|
blob
|
history
diff --git
a/builtin/commit.c
b/builtin/commit.c
index
1c9e8e2
..
599fd10
100644
(file)
--- a/
builtin/commit.c
+++ b/
builtin/commit.c
@@
-534,7
+534,7
@@
static void export_one(const char *var, const char *s, const char *e, int hack)
struct strbuf buf = STRBUF_INIT;
if (hack)
strbuf_addch(&buf, hack);
- strbuf_add
f(&buf, "%.*s", (int)(e - s),
s);
+ strbuf_add
(&buf, s, e -
s);
setenv(var, buf.buf, 1);
strbuf_release(&buf);
}