From: Francois Fleuret Date: Sat, 8 Jun 2013 20:38:40 +0000 (+0200) Subject: Cosmetics in the error messages for safe functions. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mymail.git;a=commitdiff_plain;h=cc6ebaf22de26379f347bccad740d4d2d28f780e Cosmetics in the error messages for safe functions. --- diff --git a/mymail.c b/mymail.c index c1b09be..347f2a4 100644 --- a/mymail.c +++ b/mymail.c @@ -200,7 +200,7 @@ void *safe_malloc(size_t n) { void *p = malloc(n); if(!p && n != 0) { fprintf(stderr, - "selector: cannot allocate memory: %s\n", strerror(errno)); + "mymail: cannot allocate memory: %s\n", strerror(errno)); exit(EXIT_FAILURE); } return p; @@ -212,8 +212,9 @@ FILE *safe_fopen(const char *path, const char *mode, const char *comment) { return result; } else { fprintf(stderr, - "mymail: Cannot open file '%s' (%s) with mode \"%s\".\n", - path, comment, mode); + "mymail: Cannot open file '%s' (%s) with mode \"%s\": %s\n", + path, comment, mode, + strerror(errno)); exit(EXIT_FAILURE); } }