summaryrefslogtreecommitdiff
path: root/httpd_commands.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_commands.c
parente223ce08864953b9ff59aa2196010d8928a4c3f5 (diff)
Fixed header inclusions across command files.
Diffstat (limited to 'httpd_commands.c')
-rw-r--r--httpd_commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpd_commands.c b/httpd_commands.c
index c77d7c8..d0029a2 100644
--- a/httpd_commands.c
+++ b/httpd_commands.c
@@ -1,4 +1,4 @@
-#include "commands.h"
+#include "httpd_commands.h"
#include "music.h"
#include "transcode.h"
#include "decoder.h"
@@ -171,7 +171,7 @@ commands_get_mp3_free_path:
g_free(path);
}
-void commands_handle(GSocketConnection *connection, const gchar *cmd) {
+void httpd_commands_handle(GSocketConnection *connection, const gchar *cmd) {
g_debug("handling command string %s", cmd);
if(g_ascii_strncasecmp(cmd, "/get_raw", 8) == 0) {
commands_get_raw(connection, cmd);