diff --git a/bin/named/server.c b/bin/named/server.c index 82c994b1a4..c29a5e2bc0 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,8 +15,6 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id$ */ - /*! \file */ #include @@ -9023,10 +9021,10 @@ inuse(const char* file, isc_boolean_t first, isc_buffer_t *text) { strlen(file) + (first ? sizeof(INUSEMSG) : sizeof("\n"))) { if (first) - putstr(text, INUSEMSG); + (void) putstr(text, INUSEMSG); else - putstr(text, "\n"); - putstr(text, file); + (void) putstr(text, "\n"); + (void) putstr(text, file); return (ISC_FALSE); } return (first); @@ -9771,7 +9769,7 @@ ns_server_zonestatus(ns_server_t *server, char *args, isc_buffer_t *text) { cleanup: /* Indicate truncated output if possible. */ if (result == ISC_R_NOSPACE) - putstr(text, "\n..."); + (void) putstr(text, "\n..."); if ((result == ISC_R_SUCCESS || result == ISC_R_NOSPACE)) putnull(text);