* localaddr.c (krb5_os_localaddr_profile): Cast argument to
authorEzra Peisach <epeisach@mit.edu>
Wed, 10 Oct 2001 22:23:55 +0000 (22:23 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 10 Oct 2001 22:23:55 +0000 (22:23 +0000)
isspace() to int.

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

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/localaddr.c

index a39c1f1f626da065ea926852da82dc6e0a97fc2d..183cd6a6379d360e7344e2fc20a6f9bbe4f94f25 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-10  Ezra Peisach  <epeisach@mit.edu>
+
+       * localaddr.c (krb5_os_localaddr_profile): Cast argument to
+       isspace() to int.
+
 2001-10-09  Ken Raeburn  <raeburn@mit.edu>
 
        * os-proto.h: Make prototypes unconditional.
index 021d2b6af0a9b7d5ceab0c2899c9c8787050566e..a481945f05ce8497eb55fccbfdad9c05d9c773eb 100644 (file)
@@ -850,7 +850,7 @@ krb5_os_localaddr_profile (krb5_context context, struct localaddr_data *datap)
 #endif
 
        for (cp = *iter, next = 0; *cp; cp = next) {
-           while (isspace (*cp) || *cp == ',')
+           while (isspace ((int) *cp) || *cp == ',')
                cp++;
            if (*cp == 0)
                break;
@@ -859,7 +859,7 @@ krb5_os_localaddr_profile (krb5_context context, struct localaddr_data *datap)
            fprintf (stderr, "    addr found in '%s'\n", cp);
 #endif
            this = cp;
-           while (*cp != 0 && !isspace(*cp) && *cp != ',')
+           while (*cp != 0 && !isspace((int) *cp) && *cp != ',')
                cp++;
            if (*cp != 0) {
                next = cp + 1;