aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-03-23 23:51:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-03-23 23:51:50 +0000
commit548dfb3cf8c18ea9386dff2caff5ba5431666ce7 (patch)
tree5964b3707ed884e66712f20fde13a744e83b0858
parentbb6e7e65b927dc1c9503012a4617e3b2433d2996 (diff)
downloadfetchmail-548dfb3cf8c18ea9386dff2caff5ba5431666ce7.tar.gz
fetchmail-548dfb3cf8c18ea9386dff2caff5ba5431666ce7.tar.bz2
fetchmail-548dfb3cf8c18ea9386dff2caff5ba5431666ce7.zip
Fix minor bug.
svn path=/trunk/; revision=1716
-rw-r--r--env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/env.c b/env.c
index a77b9ad8..890ece41 100644
--- a/env.c
+++ b/env.c
@@ -70,7 +70,7 @@ void envquery(int argc, char **argv)
if (hp == (struct hostent *) NULL)
{
/* exit with error message */
- fprintf(stderr, "gethostbyname failed for %s", tmpbuf);
+ fprintf(stderr, "gethostbyname failed for %s\n", tmpbuf);
exit(PS_DNS);
}
strcpy(tmpbuf, hp->h_name);