Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
mailmap.c: use error_errno()
author
Nguyễn Thái Ngọc Duy
<pclouds@gmail.com>
Sun, 8 May 2016 09:47:50 +0000
(16:47 +0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 9 May 2016 19:29:08 +0000
(12:29 -0700)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
mailmap.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
a26f4ed
)
diff --git
a/mailmap.c
b/mailmap.c
index f4a0f1cf27bf0a10626cc5b1fd628e12cbda3a7e..da4e49aac8966039a2ac7c989480c3efb2d52e24 100644
(file)
--- a/
mailmap.c
+++ b/
mailmap.c
@@
-189,8
+189,7
@@
static int read_mailmap_file(struct string_list *map, const char *filename,
if (!f) {
if (errno == ENOENT)
return 0;
- return error("unable to open mailmap at %s: %s",
- filename, strerror(errno));
+ return error_errno("unable to open mailmap at %s", filename);
}
while (fgets(buffer, sizeof(buffer), f) != NULL)