Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP server: change 503 response to 405 when freq is invalid, fixes…
… #3649
  • Loading branch information
perexg committed Mar 22, 2016
1 parent 4e280f9 commit 029ce39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/satip/rtsp.c
Expand Up @@ -492,7 +492,7 @@ rtsp_start
mpegts_service_t *svc;
dvb_mux_conf_t dmc;
char buf[384];
int res = HTTP_STATUS_SERVICE, qsize = 3000000, created = 0, weight;
int res = HTTP_STATUS_NOT_ALLOWED, qsize = 3000000, created = 0, weight;

pthread_mutex_lock(&global_lock);
weight = satip_server_conf.satip_weight;
Expand Down

0 comments on commit 029ce39

Please sign in to comment.