Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
vcs-svn: use error_errno()
[gitweb.git]
/
mailmap.c
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)