]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence signed/unsigned warning hpux
authorMark Andrews <marka@isc.org>
Tue, 24 Aug 2010 01:00:31 +0000 (01:00 +0000)
committerMark Andrews <marka@isc.org>
Tue, 24 Aug 2010 01:00:31 +0000 (01:00 +0000)
bin/named/server.c

index 2361c6f83187b33f0a0afebb8953865eb9122c34..04694b74377f9bd74c82fdcaea4e414ca202b6e3 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: server.c,v 1.582 2010/08/20 00:13:26 marka Exp $ */
+/* $Id: server.c,v 1.583 2010/08/24 01:00:31 marka Exp $ */
 
 /*! \file */
 
@@ -6942,7 +6942,7 @@ ns_server_del_zone(ns_server_t *server, char *args) {
 
                        /* Just spool the remainder of the file out */
                        result = isc_stdio_read(buf, 1, 1024, ifp, &n);
-                       while (n > 0) {
+                       while (n > 0U) {
                                if (result == ISC_R_EOF)
                                        result = ISC_R_SUCCESS;
                                CHECK(result);