~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavformat/tls.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-17 22:33:40 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20140817223340-net3rzywma60pzhz
Tags: 6:11~beta1-1
* New upstream Release v11~alpha2
* build against libgnutls28-dev (Closes: #758447)
* Bump shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
 
165
165
    proxy_path = getenv("http_proxy");
166
166
    use_proxy = !ff_http_match_no_proxy(getenv("no_proxy"), host) &&
167
 
                proxy_path != NULL && av_strstart(proxy_path, "http://", NULL);
 
167
                proxy_path && av_strstart(proxy_path, "http://", NULL);
168
168
 
169
169
    if (use_proxy) {
170
170
        char proxy_host[200], proxy_auth[200], dest[200];