aboutsummaryrefslogtreecommitdiff
path: root/path.c
diff options
context:
space:
mode:
authorDaniel Lowe <dlowe@bitmuse.com>2008-11-10 16:07:52 -0500
committerJunio C Hamano <gitster@pobox.com>2008-11-11 14:43:59 -0800
commit9db56f71b91153f4076a796c80c61f00edd8b700 (patch)
treedc26e0cca76524884d612fdac3139accea58dbdb /path.c
parent989206f535dcd0f43356ad38e1d54cb833d96fc2 (diff)
downloadgit-9db56f71b91153f4076a796c80c61f00edd8b700.tar.gz
git-9db56f71b91153f4076a796c80c61f00edd8b700.tar.xz
Fix non-literal format in printf-style calls
These were found using gcc 4.3.2-1ubuntu11 with the warning: warning: format not a string literal and no format arguments Incorporated suggestions from Brandon Casey <casey@nrlssc.navy.mil>. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r--path.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/path.c b/path.c
index eb2401753..a074aea64 100644
--- a/path.c
+++ b/path.c
@@ -41,7 +41,7 @@ char *mksnpath(char *buf, size_t n, const char *fmt, ...)
len = vsnprintf(buf, n, fmt, args);
va_end(args);
if (len >= n) {
- snprintf(buf, n, bad_path);
+ strlcpy(buf, bad_path, n);
return buf;
}
return cleanup_path(buf);
@@ -63,7 +63,7 @@ static char *git_vsnpath(char *buf, size_t n, const char *fmt, va_list args)
goto bad;
return cleanup_path(buf);
bad:
- snprintf(buf, n, bad_path);
+ strlcpy(buf, bad_path, n);
return buf;
}