diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-07 23:56:00 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-07 23:56:00 +0000 |
commit | 59c2959d07d7019350b10661b02ba17e6d0c4fa5 (patch) | |
tree | 37d0180ff2012da31e01fe837a119882c7c391f9 | |
parent | 17b01199f09c5058a5b470f2dbf6d5f7c69ef08f (diff) | |
download | ffmpeg-59c2959d07d7019350b10661b02ba17e6d0c4fa5.tar.gz |
use unsetenv, fix warning, patch by Stefano Sabatini, stefano dot sabatini-lala at poste dot it
Originally committed as revision 13707 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index 70b5850f02..cbd1512a84 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4385,7 +4385,7 @@ int main(int argc, char **argv) parse_options(argc, argv, options, NULL); - putenv("http_proxy"); /* Kill the http_proxy */ + unsetenv("http_proxy"); /* Kill the http_proxy */ av_init_random(av_gettime() + (getpid() << 16), &random_state); |