gsasl-commit
[Top][All Lists]
Advanced

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

CVS gsasl/lib/login


From: gsasl-commit
Subject: CVS gsasl/lib/login
Date: Fri, 24 Sep 2004 16:42:13 +0200

Update of /home/cvs/gsasl/lib/login
In directory dopio:/tmp/cvs-serv15260/lib/login

Modified Files:
        client.c login.h server.c 
Log Message:
Avoid use of internal.h.


--- /home/cvs/gsasl/lib/login/client.c  2004/09/24 14:27:35     1.3
+++ /home/cvs/gsasl/lib/login/client.c  2004/09/24 14:42:12     1.4
@@ -20,6 +20,17 @@
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
+
+/* Get strlen. */
+#include <string.h>
+
+/* Get specification. */
 #include "login.h"
 
 struct _Gsasl_login_client_state
--- /home/cvs/gsasl/lib/login/login.h   2004/09/24 14:27:35     1.8
+++ /home/cvs/gsasl/lib/login/login.h   2004/09/24 14:42:12     1.9
@@ -23,7 +23,7 @@
 #ifndef LOGIN_H
 #define LOGIN_H
 
-#include "internal.h"
+#include <gsasl.h>
 
 #define GSASL_LOGIN_NAME "LOGIN"
 
--- /home/cvs/gsasl/lib/login/server.c  2004/09/24 14:27:35     1.3
+++ /home/cvs/gsasl/lib/login/server.c  2004/09/24 14:42:12     1.4
@@ -20,6 +20,17 @@
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
+
+/* Get strdup, strlen. */
+#include <string.h>
+
+/* Get specification. */
 #include "login.h"
 
 struct _Gsasl_login_server_state





reply via email to

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