shishi-commit
[Top][All Lists]
Advanced

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

CVS shishi/tests


From: shishi-commit
Subject: CVS shishi/tests
Date: Fri, 10 Sep 2004 11:29:22 +0200

Update of /home/cvs/shishi/tests
In directory dopio:/tmp/cvs-serv19962

Modified Files:
        authenticator.c 
Log Message:
Use new API.


--- /home/cvs/shishi/tests/authenticator.c      2004/09/10 09:04:17     1.16
+++ /home/cvs/shishi/tests/authenticator.c      2004/09/10 09:29:22     1.17
@@ -175,22 +175,22 @@
     fail ("shishi_authenticator_add_authorizationdata() failed\n");
 
   /* shishi_authenticator_authorizationdata */
-  m = sizeof (buffer);
-  res = shishi_authenticator_authorizationdata (handle, a, &t, buffer, &m, 1);
+  res = shishi_authenticator_authorizationdata (handle, a, &t, &buf, &m, 1);
   if (debug)
-    escapeprint (buffer, m);
-  if (res == SHISHI_OK && t == 42 && m == 3 && memcmp (buffer, "baz", 3) == 0)
+    escapeprint (buf, m);
+  if (res == SHISHI_OK && t == 42 && m == 3 && memcmp (buf, "baz", 3) == 0)
     success ("shishi_authenticator_authorizationdata() OK\n");
   else
     fail ("shishi_authenticator_authorizationdata() failed\n");
+  free (buf);
 
   /* shishi_authenticator_authorizationdata */
-  m = sizeof (buffer);
-  res = shishi_authenticator_authorizationdata (handle, a, &t, buffer, &m, 2);
+  res = shishi_authenticator_authorizationdata (handle, a, &t, &buf, &m, 2);
   if (res == SHISHI_OUT_OF_RANGE)
     success ("shishi_authenticator_authorizationdata() OK\n");
   else
     fail ("shishi_authenticator_authorizationdata() failed\n");
+  free (buf);
 
   /* shishi_authenticator_remove_cksum */
   res = shishi_authenticator_remove_cksum (handle, a);





reply via email to

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