gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r10077 - libmicrohttpd/src/examples
Date: Wed, 20 Jan 2010 22:34:10 +0100

Author: durner
Date: 2010-01-20 22:34:10 +0100 (Wed, 20 Jan 2010)
New Revision: 10077

Modified:
   libmicrohttpd/src/examples/https_fileserver_example.c
Log:
fix the fix

Modified: libmicrohttpd/src/examples/https_fileserver_example.c
===================================================================
--- libmicrohttpd/src/examples/https_fileserver_example.c       2010-01-20 
21:07:20 UTC (rev 10076)
+++ libmicrohttpd/src/examples/https_fileserver_example.c       2010-01-20 
21:34:10 UTC (rev 10077)
@@ -131,7 +131,7 @@
     }
   *ptr = NULL;                  /* reset when done */
 
-  file = fopen (url, "rb");
+  file = fopen (&url[1], "rb");
   if (file == NULL)
     {
       response = MHD_create_response_from_data (strlen (EMPTY_PAGE),





reply via email to

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