svn rev #23404: branches/fast-negotiate/src/clients/klist/
hartmans@MIT.EDU
hartmans at MIT.EDU
Wed Dec 2 11:15:52 EST 2009
http://src.mit.edu/fisheye/changelog/krb5/?cs=23404
Commit By: hartmans
Log Message:
fix signed vs unsigned warning
Changed Files:
U branches/fast-negotiate/src/clients/klist/klist.c
Modified: branches/fast-negotiate/src/clients/klist/klist.c
===================================================================
--- branches/fast-negotiate/src/clients/klist/klist.c 2009-12-02 16:15:48 UTC (rev 23403)
+++ branches/fast-negotiate/src/clients/klist/klist.c 2009-12-02 16:15:52 UTC (rev 23404)
@@ -284,7 +284,7 @@
if (show_keys) {
printf(" (0x");
{
- int i;
+ unsigned int i;
for (i = 0; i < entry.key.length; i++)
printf("%02x", entry.key.contents[i]);
}
More information about the cvs-krb5
mailing list