gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r26976 - libmicrohttpd/src/examples


From: gnunet
Subject: [GNUnet-SVN] r26976 - libmicrohttpd/src/examples
Date: Tue, 23 Apr 2013 13:11:07 +0200

Author: LRN
Date: 2013-04-23 13:11:07 +0200 (Tue, 23 Apr 2013)
New Revision: 26976

Modified:
   libmicrohttpd/src/examples/digest_auth_example.c
Log:
Avoid conflicts with wingdi's OPAQUE


Modified: libmicrohttpd/src/examples/digest_auth_example.c
===================================================================
--- libmicrohttpd/src/examples/digest_auth_example.c    2013-04-22 23:05:57 UTC 
(rev 26975)
+++ libmicrohttpd/src/examples/digest_auth_example.c    2013-04-23 11:11:07 UTC 
(rev 26976)
@@ -30,7 +30,7 @@
 
 #define DENIED "<html><head><title>libmicrohttpd 
demo</title></head><body>Access denied</body></html>"
 
-#define OPAQUE "11733b200778ce33060f31c9af70a870ba96ddd4"
+#define OPAQUE_STR "11733b200778ce33060f31c9af70a870ba96ddd4"
 
 static int
 ahc_echo (void *cls,
@@ -53,7 +53,7 @@
                                                 DENIED,
                                                 MHD_RESPMEM_PERSISTENT);  
       ret = MHD_queue_auth_fail_response(connection, realm,
-                                        OPAQUE,
+                                        OPAQUE_STR,
                                         response,
                                         MHD_NO);    
       MHD_destroy_response(response);  
@@ -73,7 +73,7 @@
       if (NULL == response) 
        return MHD_NO;
       ret = MHD_queue_auth_fail_response(connection, realm,
-                                        OPAQUE,
+                                        OPAQUE_STR,
                                         response,
                                         (ret == MHD_INVALID_NONCE) ? MHD_YES : 
MHD_NO);  
       MHD_destroy_response(response);  




reply via email to

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