comparison stream/stream_udp.c @ 24257:d261f5109660

cosmetics: typo fix UNSUPORTED --> UNSUPPORTED
author diego
date Tue, 28 Aug 2007 22:38:45 +0000
parents a3ddd3320b47
children c1d17bd6683c
comparison
equal deleted inserted replaced
24256:587555a43c76 24257:d261f5109660
75 mp_msg (MSGT_NETWORK, MSGL_ERR, 75 mp_msg (MSGT_NETWORK, MSGL_ERR,
76 "You must enter a port number for UDP streams!\n"); 76 "You must enter a port number for UDP streams!\n");
77 streaming_ctrl_free (stream->streaming_ctrl); 77 streaming_ctrl_free (stream->streaming_ctrl);
78 stream->streaming_ctrl = NULL; 78 stream->streaming_ctrl = NULL;
79 79
80 return STREAM_UNSUPORTED; 80 return STREAM_UNSUPPORTED;
81 } 81 }
82 82
83 if (udp_streaming_start (stream) < 0) 83 if (udp_streaming_start (stream) < 0)
84 { 84 {
85 mp_msg (MSGT_NETWORK, MSGL_ERR, "udp_streaming_start failed\n"); 85 mp_msg (MSGT_NETWORK, MSGL_ERR, "udp_streaming_start failed\n");
86 streaming_ctrl_free (stream->streaming_ctrl); 86 streaming_ctrl_free (stream->streaming_ctrl);
87 stream->streaming_ctrl = NULL; 87 stream->streaming_ctrl = NULL;
88 88
89 return STREAM_UNSUPORTED; 89 return STREAM_UNSUPPORTED;
90 } 90 }
91 91
92 stream->type = STREAMTYPE_STREAM; 92 stream->type = STREAMTYPE_STREAM;
93 fixup_network_stream_cache (stream); 93 fixup_network_stream_cache (stream);
94 94