]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - ortp_send.c
Remove unused ortp_pre_select().
[paraslash.git] / ortp_send.c
index a1661a7f8efc36e51c56b0676ec598607161b14e..71544f4974e36f9be35f170d61bb10271cfdbd9e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005-2007 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -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;