Codebase list icecast2 / b67ffb5
* Isolate CURL bugfix from -5.1 NMU as patch 1003. Jonas Smedegaard 16 years ago
3 changed file(s) with 14 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
33 and Michael Ablassmeier.
44 * Add patch to fix generating /admin/streamlist.txt with missing mount
55 tags. Closes: bug#405524, thanks to Yauhen Kharuzhy.
6 * Isolate CURL bugfix from -5.1 NMU as patch 1003.
67 * Update local cdbs tweaks:
78 + Add new local cdbs tweak upstream.tarball.mk to add a
89 get-orig-source target and more.
0 --- icecast2-2.3.1.orig/src/auth_url.c
1 +++ icecast2-2.3.1/src/auth_url.c
2 @@ -518,7 +518,9 @@
3 curl_easy_setopt (url_info->handle, CURLOPT_WRITEDATA, url_info->handle);
4 curl_easy_setopt (url_info->handle, CURLOPT_NOSIGNAL, 1L);
5 curl_easy_setopt (url_info->handle, CURLOPT_TIMEOUT, 15L);
6 +#ifdef CURLOPT_PASSWDFUNCTION
7 curl_easy_setopt (url_info->handle, CURLOPT_PASSWDFUNCTION, my_getpass);
8 +#endif
9 curl_easy_setopt (url_info->handle, CURLOPT_ERRORBUFFER, &url_info->errormsg[0]);
10
11 if (url_info->username && url_info->password)
00 0001_svn_r11419_20060620.patch
11 1001_autotools_avoid_debian-subdir.patch
22 1002_streamlist_txt_generation.patch
3 1003_workaround_obsolete_curl_API.patch