gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/digest-md5


From: gsasl-commit
Subject: CVS gsasl/lib/digest-md5
Date: Sun, 19 Dec 2004 20:52:02 +0100

Update of /home/cvs/gsasl/lib/digest-md5
In directory dopio:/tmp/cvs-serv3220/lib/digest-md5

Modified Files:
        client.c server.c 
Log Message:
Fix warning.

--- /home/cvs/gsasl/lib/digest-md5/client.c     2004/12/19 19:28:51     1.22
+++ /home/cvs/gsasl/lib/digest-md5/client.c     2004/12/19 19:52:02     1.23
@@ -282,7 +282,7 @@
   if (res)
     return res == -2 ? GSASL_NEEDS_MORE : GSASL_INTEGRITY_ERROR;
 
-  if (state->sendseqnum == 4294967295)
+  if (state->sendseqnum == 4294967295UL)
     state->sendseqnum = 0;
   else
     state->sendseqnum++;
@@ -306,7 +306,7 @@
   if (res)
     return res == -2 ? GSASL_NEEDS_MORE : GSASL_INTEGRITY_ERROR;
 
-  if (state->readseqnum == 4294967295)
+  if (state->readseqnum == 4294967295UL)
     state->readseqnum = 0;
   else
     state->readseqnum++;
--- /home/cvs/gsasl/lib/digest-md5/server.c     2004/12/19 19:28:51     1.22
+++ /home/cvs/gsasl/lib/digest-md5/server.c     2004/12/19 19:52:02     1.23
@@ -271,7 +271,7 @@
   if (res)
     return res == -2 ? GSASL_NEEDS_MORE : GSASL_INTEGRITY_ERROR;
 
-  if (state->sendseqnum == 4294967295)
+  if (state->sendseqnum == 4294967295UL)
     state->sendseqnum = 0;
   else
     state->sendseqnum++;
@@ -294,7 +294,7 @@
   if (res)
     return res == -2 ? GSASL_NEEDS_MORE : GSASL_INTEGRITY_ERROR;
 
-  if (state->readseqnum == 4294967295)
+  if (state->readseqnum == 4294967295UL)
     state->readseqnum = 0;
   else
     state->readseqnum++;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]