View Issue Details

IDProjectCategoryView StatusLast Update
0001646libmicrohttpddigest authentication (HTTP)public2011-02-15 12:19
Reporterbplant Assigned ToChristian Grothoff  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionfixed 
Summary0001646: 0.9.5 does not compile when DAUTH_SUPPORT is 0
Description0.9.5 does not compile when DAUTH_SUPPORT is 0

There is a missing #if/#endif - patch attached.
TagsNo tags attached.
Attached Files
dauth.patch (459 bytes)   
Index: src/daemon/daemon.c
===================================================================
--- src/daemon/daemon.c	(revision 692)
+++ src/daemon/daemon.c	(working copy)
@@ -1793,8 +1793,10 @@
       MHD_DLOG (retVal,
 		"MHD poll support only works with MHD_USE_THREAD_PER_CONNECTION\n");
 #endif
+#if DAUTH_SUPPORT
       free (retVal->nnc);
       pthread_mutex_destroy (&retVal->nnc_lock);
+#endif
       free (retVal);
       return NULL;
     }
dauth.patch (459 bytes)   

Activities

Christian Grothoff

2011-01-24 16:37

manager   ~0004234

Fixed in SVN 14245.

Issue History

Date Modified Username Field Change
2011-01-24 09:04 bplant New Issue
2011-01-24 09:04 bplant File Added: dauth.patch
2011-01-24 16:37 Christian Grothoff Note Added: 0004234
2011-01-24 16:37 Christian Grothoff Status new => resolved
2011-01-24 16:37 Christian Grothoff Resolution open => fixed
2011-01-24 16:37 Christian Grothoff Assigned To => Christian Grothoff
2011-02-15 12:19 Christian Grothoff Status resolved => closed
2013-05-06 12:52 Christian Grothoff Category digest authentication => digest authentication (HTTP)