summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2012-04-30 00:28:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-30 22:45:54 (GMT)
commit5eaeda70de1e7763d070e8ccfbcd8ca10baea800 (patch)
treef962f7da1de0264304d1b98536a62f31d3844e0f /sha1_file.c
parent82247e9bd5f7c90c4eac9674fb7518845cd3e432 (diff)
downloadgit-5eaeda70de1e7763d070e8ccfbcd8ca10baea800.zip
git-5eaeda70de1e7763d070e8ccfbcd8ca10baea800.tar.gz
git-5eaeda70de1e7763d070e8ccfbcd8ca10baea800.tar.bz2
remove blank filename in error message
When write_loose_object() finds that it is unable to create a temporary file, it complains, for instance: unable to create temporary sha1 filename : Too many open files That extra space was supposed to be the name of the file, and will be an empty string if the git_mkstemps_mode() fails. The name of the temporary file is unimportant; delete it. Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index c8d572d..3c4f165 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -2511,7 +2511,7 @@ static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
if (errno == EACCES)
return error("insufficient permission for adding an object to repository database %s", get_object_directory());
else
- return error("unable to create temporary sha1 filename %s: %s", tmp_file, strerror(errno));
+ return error("unable to create temporary file: %s", strerror(errno));
}
/* Set it up */