client.c: supervisor task should use post_select instead of pre_select.
[paraslash.git] / ortp_send.c
index 96f4b4032a9feb3e9856519cb0ca382149141a5c..9c166aee289f5b06ed4c2e39e6c0ad100d73c8a8 100644 (file)
@@ -190,7 +190,7 @@ static void ortp_send(long unsigned current_chunk, long unsigned chunks_sent,
        }
        if (list_empty(&targets))
                return;
-       header_buf = vss_get_header(&header_len);
+       vss_get_header(&header_buf, &header_len);
        if (!need_extra_header(current_chunk))
                header_len = 0;
        sendbuf_len = ORTP_AUDIO_HEADER_LEN + header_len + len;
@@ -268,9 +268,10 @@ static char *ortp_info(void)
                tgts = tmp;
        }
        ret = make_message(
-               "ortp status: %s\n"
-               "ortp default port: udp %d\n"
-               "ortp targets: %s\n",
+               "ortp sender:\n"
+               "\tstatus: %s\n"
+               "\tport: udp %d\n"
+               "\ttargets: %s\n",
                (sender_status == SENDER_ON)? "on" : "off",
                conf.ortp_default_port_arg,
                tgts? tgts : "(none)"
@@ -346,5 +347,5 @@ void ortp_send_init(struct sender *s)
        ortp_init_target_list();
        if (!conf.ortp_no_autostart_given)
                sender_status = SENDER_ON;
-       PARA_DEBUG_LOG("%s", "ortp sender init complete\n");
+       PARA_DEBUG_LOG("ortp sender init complete\n");
 }