aboutsummaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-17 14:58:12 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-17 14:58:12 +0000
commita7eac6c4eb4ede70584faa0995abe25d51129fdd (patch)
tree2b479114cb0fa75f56158d4075b4bd98e77b5b6e /xmalloc.c
parentc30cc2b21a6b9c7ed6b5296ffbf26821a9ac51ca (diff)
downloadfetchmail-a7eac6c4eb4ede70584faa0995abe25d51129fdd.tar.gz
fetchmail-a7eac6c4eb4ede70584faa0995abe25d51129fdd.tar.bz2
fetchmail-a7eac6c4eb4ede70584faa0995abe25d51129fdd.zip
Message and documentation cleanup.
svn path=/trunk/; revision=342
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 9ea57c41..bfa5b463 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -31,7 +31,7 @@ int n;
p = (XMALLOCTYPE *) malloc(n);
if (p == (XMALLOCTYPE *) 0) {
- fputs("malloc failed\n",stderr);
+ fputs("fetchmail: malloc failed\n",stderr);
exit(PS_UNDEFINED);
}
return(p);