diff options
author | jraynard <jraynard@FreeBSD.org> | 1997-11-08 20:29:33 +0000 |
---|---|---|
committer | jraynard <jraynard@FreeBSD.org> | 1997-11-08 20:29:33 +0000 |
commit | b75b0b106494d51d5b84545d3de161afe78234f1 (patch) | |
tree | 07f861a8de58b9b2c044b9f10fd00d2753157158 /share/doc | |
parent | 554abdcebfd150d6edc6d82fc6ceeb02387d5e14 (diff) | |
download | FreeBSD-src-b75b0b106494d51d5b84545d3de161afe78234f1.zip FreeBSD-src-b75b0b106494d51d5b84545d3de161afe78234f1.tar.gz |
Back-out previous change. A better fix is to follow.
Requested-by: bde
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 3b8c750..4c4d6c5 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\\n", argv[1]); + fprintf(stderr, "%s: unknown host\n", argv[1]); exit(2); } bcopy(hp->h_addr, &name.sin_addr, hp->h_length); |