Changeset 6fda350
- Timestamp:
- 2006-01-15T16:41:55Z (19 years ago)
- Branches:
- master
- Children:
- f4a5940
- Parents:
- 74c119d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
url.c
r74c119d r6fda350 40 40 else 41 41 { 42 if( g_strncasecmp( set_url, "https", i - set_url ) == 0 ) 42 if( g_strncasecmp( set_url, "http", i - set_url ) == 0 ) 43 url->proto = PROTO_HTTP; 44 else if( g_strncasecmp( set_url, "https", i - set_url ) == 0 ) 43 45 url->proto = PROTO_HTTPS; 44 else if( g_strncasecmp( set_url, "http", i - set_url ) == 0 )45 url->proto = PROTO_HTTP;46 46 else if( g_strncasecmp( set_url, "socks4", i - set_url ) == 0 ) 47 47 url->proto = PROTO_SOCKS4;
Note: See TracChangeset
for help on using the changeset viewer.