summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-08-20 16:30:30 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2010-08-20 16:30:30 +0200
commit5a906dee16177d9427520c8d6cd391d5111815b2 (patch)
tree406ca4b93e035ddd078be870966cc1a160a3ca02 /httpd.c
parente223ce08864953b9ff59aa2196010d8928a4c3f5 (diff)
Fixed header inclusions across command files.
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpd.c b/httpd.c
index 744871f..6e95730 100644
--- a/httpd.c
+++ b/httpd.c
@@ -1,5 +1,5 @@
#include "httpd.h"
-#include "commands.h"
+#include "httpd_commands.h"
#include <gio/gio.h>
#include <string.h>
@@ -66,7 +66,7 @@ static gboolean service_incoming(GSocketService *service,
g_strfreev(data);
- commands_handle(connection, path);
+ httpd_commands_handle(connection, path);
g_free(path);