summaryrefslogtreecommitdiffstats
path: root/stream/http.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-28 22:38:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-28 22:38:45 +0000
commit01d92a32adc89a9c3ac451b47cc279a215ee9c4b (patch)
treeeba1c598b56373cb2ae00af1e502012f37c2526c /stream/http.c
parent96217887af00ec35aac12bb257f5fa2cf19a1684 (diff)
downloadmpv-01d92a32adc89a9c3ac451b47cc279a215ee9c4b.tar.bz2
mpv-01d92a32adc89a9c3ac451b47cc279a215ee9c4b.tar.xz
cosmetics: typo fix UNSUPORTED --> UNSUPPORTED
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24277 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/http.c')
-rw-r--r--stream/http.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stream/http.c b/stream/http.c
index 103b6e83a4..0e2f985338 100644
--- a/stream/http.c
+++ b/stream/http.c
@@ -853,7 +853,7 @@ static int http_streaming_start(stream_t *stream, int* file_format) {
err_out:
if (fd > 0) closesocket( fd );
fd = -1;
- res = STREAM_UNSUPORTED;
+ res = STREAM_UNSUPPORTED;
http_free( http_hdr );
http_hdr = NULL;
out:
@@ -882,7 +882,7 @@ static int fixup_open(stream_t *stream,int seekable) {
stream->fd = -1;
streaming_ctrl_free(stream->streaming_ctrl);
stream->streaming_ctrl = NULL;
- return STREAM_UNSUPORTED;
+ return STREAM_UNSUPPORTED;
}
fixup_network_stream_cache(stream);
@@ -910,7 +910,7 @@ static int open_s1(stream_t *stream,int mode, void* opts, int* file_format) {
stream->fd = -1;
streaming_ctrl_free(stream->streaming_ctrl);
stream->streaming_ctrl = NULL;
- return STREAM_UNSUPORTED;
+ return STREAM_UNSUPPORTED;
}
return fixup_open(stream, seekable);
@@ -937,7 +937,7 @@ static int open_s2(stream_t *stream,int mode, void* opts, int* file_format) {
stream->fd = -1;
streaming_ctrl_free(stream->streaming_ctrl);
stream->streaming_ctrl = NULL;
- return STREAM_UNSUPORTED;
+ return STREAM_UNSUPPORTED;
}
return fixup_open(stream, seekable);