Add forgotten newlines in debug messages.

This commit is contained in:
Jacques Vidrine 2002-09-19 11:36:47 +00:00
parent 26eed6e9a2
commit 7922d4cf1a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103630

View File

@ -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;
}