diff options
author | nectar <nectar@FreeBSD.org> | 2002-09-19 11:36:47 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2002-09-19 11:36:47 +0000 |
commit | d3b3a2b79bf5041d94bae9d209539c01903e2ce8 (patch) | |
tree | 45c80293f032867f9c5fccfb3063cbd0b1b5ec58 | |
parent | 01d3084ec03fe79641096e8ae35380c51759dbaf (diff) | |
download | FreeBSD-src-d3b3a2b79bf5041d94bae9d209539c01903e2ce8.zip FreeBSD-src-d3b3a2b79bf5041d94bae9d209539c01903e2ce8.tar.gz |
Add forgotten newlines in debug messages.
-rw-r--r-- | lib/libc/net/getnetbydns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/net/getnetbydns.c b/lib/libc/net/getnetbydns.c index fd771f2..6e70ece 100644 --- a/lib/libc/net/getnetbydns.c +++ b/lib/libc/net/getnetbydns.c @@ -269,7 +269,7 @@ _dns_getnetbyaddr(void *rval, void *cb_data, va_list ap) } else if (anslen > sizeof(buf)) { #ifdef DEBUG if (_res.options & RES_DEBUG) - printf("res_search static buffer too small"); + printf("res_search static buffer too small\n"); #endif return NS_UNAVAIL; } @@ -315,7 +315,7 @@ _dns_getnetbyname(void *rval, void *cb_data, va_list ap) } else if (anslen > sizeof(buf)) { #ifdef DEBUG if (_res.options & RES_DEBUG) - printf("res_search static buffer too small"); + printf("res_search static buffer too small\n"); #endif return NS_UNAVAIL; } |