summaryrefslogtreecommitdiff
path: root/server_communication.c
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-08-26 22:53:22 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2010-08-26 22:53:22 +0200
commit297d480ba91b45f4145932024bfde48c37ebf539 (patch)
treeb8c7401f3f6fdcf8eb9f6246a6352ff2313ddb4e /server_communication.c
parente301eb7510e0e9911022f23c8533ff09a74f944b (diff)
Really fixed find command regression.
Diffstat (limited to 'server_communication.c')
-rw-r--r--server_communication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_communication.c b/server_communication.c
index e32f6bc..64de9dc 100644
--- a/server_communication.c
+++ b/server_communication.c
@@ -79,7 +79,7 @@ gchar **server_find(struct server *server, const gchar *type, const gchar *str)
}
gchar buffer[0x400];
- g_snprintf(buffer, 0x400, "rfind %s %s\nexit\n", type, str);
+ g_snprintf(buffer, 0x400, "findr %s %s\nexit\n", type, str);
g_socket_send(socket, buffer, strlen(buffer), NULL, NULL);
gssize size;