Skip to content

Commit

Permalink
Fix bug in ooutput of 'flsr' metadata item -- remove the leading equa…
Browse files Browse the repository at this point in the history
…ls sign.
  • Loading branch information
mikebrady committed Dec 4, 2017
1 parent 0f68ff0 commit 42b2a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ static void handle_flush(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *
// debug(1,"RTSP Flush Requested: %u.",rtptime);
#ifdef CONFIG_METADATA
if (p)
send_metadata('ssnc', 'flsr', p, strlen(p), req, 1);
send_metadata('ssnc', 'flsr', p+1, strlen(p+1), req, 1);
else
send_metadata('ssnc', 'flsr', NULL, 0, NULL, 0);
#endif
Expand Down

0 comments on commit 42b2a8c

Please sign in to comment.