* klist.c (one_addr): Make 0 unsigned (!) in conditional expression in
authorKen Raeburn <raeburn@mit.edu>
Fri, 5 Apr 2002 23:46:23 +0000 (23:46 +0000)
committerKen Raeburn <raeburn@mit.edu>
Fri, 5 Apr 2002 23:46:23 +0000 (23:46 +0000)
getnameinfo call to avoid silly compiler warning.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14361 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/klist/ChangeLog
src/clients/klist/klist.c

index 2e5b11077cf8691d78e35f530896a57f3b5658fc..5d112621d96206d46a89c169c6ce258fcc9f70e4 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-05  Ken Raeburn  <raeburn@mit.edu>
+
+       * klist.c (one_addr): Make 0 unsigned (!) in conditional
+       expression in getnameinfo call to avoid silly compiler warning.
+
 2002-03-26  Ken Raeburn  <raeburn@mit.edu>
 
        * klist.c: Include fake-addrinfo.h, not fake-addrinfo.c.
index 763009ddf11d2e700b58ac0a1cfb2483f9eeb32e..5b40dbefd14688725df942f48ac2139778c96f03 100644 (file)
@@ -707,7 +707,7 @@ void one_addr(a)
     namebuf[0] = 0;
     err = getnameinfo (ss2sa (&ss), socklen (ss2sa (&ss)),
                       namebuf, sizeof (namebuf), 0, 0,
-                      no_resolve ? NI_NUMERICHOST : 0);
+                      no_resolve ? NI_NUMERICHOST : 0U);
     if (err) {
        printf ("unprintable address (type %d, error %d %s)", a->addrtype, err,
                gai_strerror (err));