* gssapiP_generic.h (g_OID_equal): Instead of casting argument to
authorEzra Peisach <epeisach@mit.edu>
Tue, 3 Oct 2000 19:05:26 +0000 (19:05 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 3 Oct 2000 19:05:26 +0000 (19:05 +0000)
memcmp as int, cast to unsigned int to match prototype.

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

src/lib/gssapi/generic/ChangeLog
src/lib/gssapi/generic/gssapiP_generic.h

index d6b6166b6f8e338d2cde8be466fdb911b01dd586..0cf31390c263d3ae3088ca7257faeee2e750195f 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-03  Ezra Peisach  <epeisach@mit.edu>
+
+       * gssapiP_generic.h (g_OID_equal): Instead of casting argument to
+       memcmp as int, cast to unsigned int to match prototype.
+
 2000-08-03  Ken Raeburn  <raeburn@mit.edu>
 
        * Makefile.in (SRCS, OBJS, STLIBOBJS): Remove util_canonhost.
index 8bdda4bc0bfdf5901bd8e807bca7e7c4cbfe8ae9..a9477164b46af6807f068796936fe06c18219028 100644 (file)
@@ -44,7 +44,7 @@
 
 #define g_OID_equal(o1,o2) \
    (((o1)->length == (o2)->length) && \
-    (memcmp((o1)->elements,(o2)->elements,(int) (o1)->length) == 0))
+    (memcmp((o1)->elements,(o2)->elements,(unsigned int) (o1)->length) == 0))
 
 /* this code knows that an int on the wire is 32 bits.  The type of
    num should be at least this big, or the extra shifts may do weird