aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'server.c')
-rw-r--r--server.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/server.c b/server.c
index f8bdbaa8..a8ae6226 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.186 2009-09-13 20:43:21 tcunha Exp $ */
+/* $Id: server.c,v 1.187 2009-09-15 23:50:32 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -115,19 +115,6 @@ server_create_client(int fd)
log_debug("new client %d", fd);
}
-/* Find client index. */
-int
-server_client_index(struct client *c)
-{
- u_int i;
-
- for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
- if (c == ARRAY_ITEM(&clients, i))
- return (i);
- }
- return (-1);
-}
-
/* Fork new server. */
int
server_start(char *path)