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: Mon, 04 Oct 2004 16:56:03 +0200

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

Modified Files:
        shared.c shared.h 
Log Message:
Fix warnings.

--- /home/cvs/gsasl/lib/digest-md5/shared.c     2004/09/24 14:42:12     1.2
+++ /home/cvs/gsasl/lib/digest-md5/shared.c     2004/10/04 14:56:02     1.3
@@ -34,7 +34,7 @@
 #include "digest-md5.h"
 #include "shared.h"
 
-const char *digest_challenge_opts[] = {
+char *const digest_challenge_opts[] = {
   /* the order must match the previous enum */
   "realm",
   "nonce",
@@ -47,7 +47,7 @@
   NULL
 };
 
-const char *digest_response_opts[] = {
+char *const digest_response_opts[] = {
   /* the order must match the previous enum */
   "username",
   "realm",
@@ -65,13 +65,13 @@
 };
 
 
-const char *digest_responseauth_opts[] = {
+char *const digest_responseauth_opts[] = {
   /* the order must match the previous enum */
   "rspauth",
   NULL
 };
 
-const char *qop_opts[] = {
+char *const qop_opts[] = {
   /* the order must match the previous enum */
   QOP_AUTH,
   QOP_AUTH_INT,
@@ -79,7 +79,7 @@
   NULL
 };
 
-const char *cipher_opts[] = {
+char *const cipher_opts[] = {
   /* the order must match the previous enum */
   CIPHER_DES,
   CIPHER_3DES,
--- /home/cvs/gsasl/lib/digest-md5/shared.h     2004/09/26 07:19:15     1.2
+++ /home/cvs/gsasl/lib/digest-md5/shared.h     2004/10/04 14:56:02     1.3
@@ -143,7 +143,7 @@
   CHALLENGE_CIPHER
 };
 
-extern const char *digest_challenge_opts[];
+extern char *const digest_challenge_opts[];
 
 enum
 {
@@ -162,7 +162,7 @@
   RESPONSE_AUTHZID
 };
 
-extern const char *digest_response_opts[];
+extern char *const digest_response_opts[];
 
 enum
 {
@@ -170,7 +170,7 @@
   RESPONSEAUTH_RSPAUTH = 0
 };
 
-extern const char *digest_responseauth_opts[];
+extern char *const digest_responseauth_opts[];
 
 enum
 {
@@ -180,7 +180,7 @@
   QOP_AUTH_CONF_OPTION
 };
 
-extern const char *qop_opts[];
+extern char *const qop_opts[];
 
 enum
 {
@@ -193,7 +193,7 @@
   CIPHER_AES_OPTION
 };
 
-extern const char *cipher_opts[];
+extern char *const cipher_opts[];
 
 extern int
 _gsasl_getsubopt (char **optionp, char *const *tokens, char **valuep);





reply via email to

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