From 90e9079142f533c9a30f3431e03b49bbf4f73a77 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 31 Oct 2008 09:17:56 +0100 Subject: client: use GSList instead of struct strnode for command lists Replace a custom data structure with a GLib one. --- src/command.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.h') diff --git a/src/command.h b/src/command.h index 763487c12..bcefd0376 100644 --- a/src/command.h +++ b/src/command.h @@ -20,9 +20,9 @@ #define COMMAND_H #include "gcc.h" -#include "sllist.h" #include "ack.h" +#include #include enum command_return { @@ -40,7 +40,7 @@ void command_finish(void); enum command_return command_process_list(struct client *client, - bool list_ok, struct strnode *list); + bool list_ok, GSList *list); enum command_return command_process(struct client *client, char *commandString); -- cgit v1.2.3