diff options
author | Peter Eriksen <s022018@student.dtu.dk> | 2006-06-11 14:03:28 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-16 22:45:12 -0700 |
commit | bfbd0bb6ecbbbf75a5caaff6afaf5a6af8fa518e (patch) | |
tree | 52f36804599a41eafa3a020f06dbe118c6f652f9 /builtin-log.c | |
parent | 5996ca0836e21ab4e6be0a16a615eff965f18b8b (diff) | |
download | git-bfbd0bb6ecbbbf75a5caaff6afaf5a6af8fa518e.tar.gz git-bfbd0bb6ecbbbf75a5caaff6afaf5a6af8fa518e.tar.xz |
Implement safe_strncpy() as strlcpy() and use it more.
Signed-off-by: Peter Eriksen <s022018@student.dtu.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-log.c')
-rw-r--r-- | builtin-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-log.c b/builtin-log.c index 29a885121..5b0ea2834 100644 --- a/builtin-log.c +++ b/builtin-log.c @@ -112,7 +112,7 @@ static void reopen_stdout(struct commit *commit, int nr, int keep_subject) int len = 0; if (output_directory) { - strncpy(filename, output_directory, 1010); + safe_strncpy(filename, output_directory, 1010); len = strlen(filename); if (filename[len - 1] != '/') filename[len++] = '/'; |