gsasl-commit
[Top][All Lists]
Advanced

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

CVS gsasl/examples


From: gsasl-commit
Subject: CVS gsasl/examples
Date: Mon, 04 Oct 2004 17:06:43 +0200

Update of /home/cvs/gsasl/examples
In directory dopio:/tmp/cvs-serv10179/examples

Modified Files:
        client-callback.c client-mech.c client-serverfirst.c client.c 
Log Message:
Fix warnings.

--- /home/cvs/gsasl/examples/client-callback.c  2004/10/03 23:41:57     1.4
+++ /home/cvs/gsasl/examples/client-callback.c  2004/10/04 15:06:43     1.5
@@ -26,7 +26,7 @@
 
 #include <gsasl.h>
 
-void
+static void
 client_authenticate (Gsasl * ctx, Gsasl_session * session)
 {
   char buf[BUFSIZ] = "";
@@ -64,7 +64,7 @@
   printf ("If server accepted us, we're done.\n");
 }
 
-void
+static void
 client (Gsasl *ctx)
 {
   Gsasl_session *session;
@@ -85,7 +85,7 @@
   gsasl_finish (session);
 }
 
-int
+static int
 callback (Gsasl * ctx, Gsasl_session * sctx, Gsasl_property prop)
 {
   char buf[BUFSIZ] = "";
--- /home/cvs/gsasl/examples/client-mech.c      2004/10/04 00:45:39     1.3
+++ /home/cvs/gsasl/examples/client-mech.c      2004/10/04 15:06:43     1.4
@@ -26,7 +26,7 @@
 
 #include <gsasl.h>
 
-void
+static void
 client_authenticate (Gsasl * ctx, Gsasl_session * session)
 {
   char buf[BUFSIZ] = "";
@@ -64,7 +64,7 @@
   printf ("If server accepted us, we're done.\n");
 }
 
-const char *
+static const char *
 client_mechanism (Gsasl *ctx)
 {
   static char mech[GSASL_MAX_MECHANISM_SIZE + 1] = "";
@@ -85,7 +85,7 @@
   return mech;
 }
 
-void
+static void
 client (Gsasl *ctx)
 {
   Gsasl_session *session;
--- /home/cvs/gsasl/examples/client-serverfirst.c       2004/10/03 23:41:39     
1.3
+++ /home/cvs/gsasl/examples/client-serverfirst.c       2004/10/04 15:06:43     
1.4
@@ -26,7 +26,7 @@
 
 #include <gsasl.h>
 
-void
+static void
 client_authenticate (Gsasl * ctx, Gsasl_session * session)
 {
   char buf[BUFSIZ] = "";
@@ -64,7 +64,7 @@
   printf ("If server accepted us, we're done.\n");
 }
 
-void
+static void
 client (Gsasl *ctx)
 {
   Gsasl_session *session;
--- /home/cvs/gsasl/examples/client.c   2004/10/03 23:37:19     1.3
+++ /home/cvs/gsasl/examples/client.c   2004/10/04 15:06:43     1.4
@@ -26,7 +26,7 @@
 
 #include <gsasl.h>
 
-void
+static void
 client_authenticate (Gsasl * ctx, Gsasl_session * session)
 {
   char buf[BUFSIZ] = "";
@@ -70,7 +70,7 @@
   printf ("If server accepted us, we're done.\n");
 }
 
-void
+static void
 client (Gsasl *ctx)
 {
   Gsasl_session *session;





reply via email to

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