diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-03-06 13:28:17 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-03-06 13:28:17 +0000 |
commit | 6e4802b80e15669617a0e2357e9dd03f862bdfa7 (patch) | |
tree | 8595dd33f85e8862c685cfda7e915946e00e3583 /share/doc | |
parent | dab4b2f3478e62aab5f513a39c8b3aaa9bdf7068 (diff) |
\e should have been \n (don't know when this was broken).
Notes
Notes:
svn path=/head/; revision=34104
Diffstat (limited to 'share/doc')
-rw-r--r-- | share/doc/psd/20.ipctut/dgramsend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/psd/20.ipctut/dgramsend.c b/share/doc/psd/20.ipctut/dgramsend.c index 4bd1e5a13015..4c4d6c508ffc 100644 --- a/share/doc/psd/20.ipctut/dgramsend.c +++ b/share/doc/psd/20.ipctut/dgramsend.c @@ -67,7 +67,7 @@ main(argc, argv) */ hp = gethostbyname(argv[1]); if (hp == 0) { - fprintf(stderr, "%s: unknown host\en", argv[1]); + fprintf(stderr, "%s: unknown host\n", argv[1]); exit(2); } bcopy(hp->h_addr, &name.sin_addr, hp->h_length); |