]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Remove unused ortp_pre_select().
authorAndre Noll <maan@systemlinux.org>
Sat, 19 Jan 2008 11:55:14 +0000 (12:55 +0100)
committerAndre Noll <maan@systemlinux.org>
Sat, 19 Jan 2008 11:55:14 +0000 (12:55 +0100)
ortp_send.c

index 597068a82184ce93262ac6befd60566464207b2c..71544f4974e36f9be35f170d61bb10271cfdbd9e 100644 (file)
@@ -308,12 +308,6 @@ success:
        }
 }
 
-static void ortp_pre_select(__a_unused  int *max_fileno, __a_unused fd_set *rfds,
-       __a_unused fd_set *wfds)
-{
-       return;
-}
-
 static char *ortp_help(void)
 {
        return make_message(
@@ -337,7 +331,7 @@ void ortp_send_init(struct sender *s)
        s->info = ortp_info;
        s->help = ortp_help;
        s->send = ortp_send;
-       s->pre_select = ortp_pre_select;
+       s->pre_select = NULL;
        s->post_select = NULL;
        s->shutdown_clients = ortp_shutdown_targets;
        s->client_cmds[SENDER_ON] = ortp_com_on;