summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2009-11-19 17:54:40 (GMT)
committerChristian Pointner <equinox@helsinki.at>2009-11-19 17:54:40 (GMT)
commitc704199bb4a1ba50961be03d586e162593909549 (patch)
treeb599188843a00d8f46297ab494d6eee81475f217 /utils.h
parente3dea264db4f4d0edd093114a52f9a52da163407 (diff)
got rid of useless cmd_q
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils.h b/utils.h
index 9461321..65afba2 100644
--- a/utils.h
+++ b/utils.h
@@ -22,7 +22,6 @@
#ifndef RHDROPBOX_utils_h_INCLUDED
#define RHDROPBOX_utils_h_INCLUDED
-#include "command_queue.h"
#include "client_list.h"
#include "options.h"
#include <termios.h>
@@ -30,6 +29,6 @@
int init_command_socket(const char* path);
int connect_command_socket(const char* path);
int send_string(int fd, const char* string);
-int nonblock_recvline(read_buffer_t* buffer, int fd, cmd_t** cmd_q, client_t* client_lst, options_t* opt);
+int nonblock_recvline(read_buffer_t* buffer, int fd, client_t* client_lst, options_t* opt);
#endif