gsasl-commit
[Top][All Lists]
Advanced

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

CVS gsasl/lib/cram-md5


From: gsasl-commit
Subject: CVS gsasl/lib/cram-md5
Date: Fri, 24 Sep 2004 16:42:11 +0200

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

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


--- /home/cvs/gsasl/lib/cram-md5/client.c       2004/09/24 01:37:14     1.7
+++ /home/cvs/gsasl/lib/cram-md5/client.c       2004/09/24 14:42:11     1.8
@@ -20,8 +20,19 @@
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get specification. */
 #include "cram-md5.h"
 
+/* Get malloc, free. */
+#include <stdlib.h>
+
+/* Get memcpy, strlen. */
+#include <string.h>
+
 /* Get cram_md5_digest. */
 #include "digest.h"
 
--- /home/cvs/gsasl/lib/cram-md5/cram-md5.h     2004/09/24 14:27:34     1.9
+++ /home/cvs/gsasl/lib/cram-md5/cram-md5.h     2004/09/24 14:42:11     1.10
@@ -23,7 +23,7 @@
 #ifndef CRAM_MD5_H
 #define CRAM_MD5_H
 
-#include "internal.h"
+#include <gsasl.h>
 
 #define GSASL_CRAM_MD5_NAME "CRAM-MD5"
 
--- /home/cvs/gsasl/lib/cram-md5/server.c       2004/09/24 14:27:34     1.6
+++ /home/cvs/gsasl/lib/cram-md5/server.c       2004/09/24 14:42:11     1.7
@@ -20,8 +20,19 @@
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/* Get specification. */
 #include "cram-md5.h"
 
+/* Get malloc, free. */
+#include <stdlib.h>
+
+/* Get memcpy, strdup, strlen. */
+#include <string.h>
+
 /* Get cram_md5_challenge. */
 #include "challenge.h"
 





reply via email to

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