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: Fri, 24 Sep 2004 16:42:12 +0200

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

Modified Files:
        client.c digest-md5.h server.c session.c shared.c 
Log Message:
Avoid use of internal.h.


--- /home/cvs/gsasl/lib/digest-md5/client.c     2004/09/24 14:27:34     1.7
+++ /home/cvs/gsasl/lib/digest-md5/client.c     2004/09/24 14:42:12     1.8
@@ -20,10 +20,21 @@
  *
  */
 
-#include "digest-md5.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
 
+/* Get memcpy, strlen. */
+#include <string.h>
+
+/* Get specification. */
+#include "digest-md5.h"
 #include "shared.h"
 
+/* Get digest_md5_encode, digest_md5_decode. */
 #include "session.h"
 
 struct _Gsasl_digest_md5_client_state
--- /home/cvs/gsasl/lib/digest-md5/digest-md5.h 2004/09/24 14:27:34     1.7
+++ /home/cvs/gsasl/lib/digest-md5/digest-md5.h 2004/09/24 14:42:12     1.8
@@ -23,7 +23,7 @@
 #ifndef DIGEST_MD5_H
 #define DIGEST_MD5_H
 
-#include "internal.h"
+#include <gsasl.h>
 
 #define GSASL_DIGEST_MD5_NAME "DIGEST-MD5"
 
--- /home/cvs/gsasl/lib/digest-md5/server.c     2004/09/24 14:27:34     1.7
+++ /home/cvs/gsasl/lib/digest-md5/server.c     2004/09/24 14:42:12     1.8
@@ -20,10 +20,21 @@
  *
  */
 
-#include "digest-md5.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
 
+/* Get memcpy, strdup, strlen. */
+#include <string.h>
+
+/* Get specification. */
+#include "digest-md5.h"
 #include "shared.h"
 
+/* Get digest_md5_encode, digest_md5_decode. */
 #include "session.h"
 
 struct _Gsasl_digest_md5_server_state
--- /home/cvs/gsasl/lib/digest-md5/session.c    2004/09/23 23:38:59     1.1
+++ /home/cvs/gsasl/lib/digest-md5/session.c    2004/09/24 14:42:12     1.2
@@ -20,6 +20,16 @@
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
+
+/* Get memcpy, strdup, strlen. */
+#include <string.h>
+
 /* Get gsasl.h and other stuff. */
 #include "shared.h"
 
--- /home/cvs/gsasl/lib/digest-md5/shared.c     2004/09/18 16:50:46     1.1
+++ /home/cvs/gsasl/lib/digest-md5/shared.c     2004/09/24 14:42:12     1.2
@@ -20,8 +20,18 @@
  *
  */
 
-#include "digest-md5.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get malloc, free. */
+#include <stdlib.h>
 
+/* Get memcpy, strlen. */
+#include <string.h>
+
+/* Get specification. */
+#include "digest-md5.h"
 #include "shared.h"
 
 const char *digest_challenge_opts[] = {





reply via email to

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