Processed: changing submitter to myself
Processing commands for cont...@bugs.debian.org: > submitter 544613 ! Bug #544613 [ncurses] ncurses: clarify the purpose of the -dbg packages Changed Bug submitter to 'Sven Joachim ' from 'Raphael Geissert ' > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: Re: Bug#189261: Info received ([PATCH] support HTTP proxy basic access authenication)
Processing commands for cont...@bugs.debian.org: > tag 189261 + patch pending Bug #189261 [libcdaudio] cdcd: does not support http proxy with authentication Added tag(s) pending and patch. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#189261: Info received ([PATCH] support HTTP proxy basic access authenication)
tag 189261 + patch pending thanks In the previous mail I sent a patch implementing HTTP proxy basic access authentication. I intend to put this in the next version of libcdaudio as I have adopted this package. -- Zak B. Elep -- 1486 7957 454D E529 E4F1 F75E 5787 B1FD FA53 851D I like the idea of 256 bits, though: 32 for the (Unicode) character leaves room for 224 Bucky bits, which ought to be enough for anyone. -- Roland Hutchinson, in alt.folklore.computers signature.asc Description: This is a digitally signed message part
Bug#189261: [PATCH] support HTTP proxy basic access authenication
This patch implements basic access authentication against HTTP proxies. The changes are done without touching the external interface, requiring no SONAME change (and hopefully no ABI breakage.) Still, more testing is needed. Debian Bug #189261 Signed-off-by: Zak B. Elep --- src/base64.c | 11 src/cddb.c | 148 - 2 files changed, 135 insertions(+), 24 deletions(-) diff --git a/src/base64.c b/src/base64.c index e4b627d..53a4c1c 100644 --- a/src/base64.c +++ b/src/base64.c @@ -105,6 +105,10 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. static unsigned char oddity_64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._-"; +/* Regular base64 encoding set */ +static unsigned char regular_64[] = +"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; + int cd_basis_encode64(unsigned char *outbuffer, unsigned char *inbuffer, int inlen, int outlen, unsigned char *basis) @@ -153,3 +157,10 @@ cdindex_encode64(unsigned char *outbuffer, unsigned char *inbuffer, { return cd_basis_encode64(outbuffer, inbuffer, inlen, outlen, oddity_64); } + +int +regular_encode64(unsigned char *outbuffer, unsigned char *inbuffer, +int inlen, int outlen) +{ + return cd_basis_encode64(outbuffer, inbuffer, inlen, outlen, regular_64); +} diff --git a/src/cddb.c b/src/cddb.c index 3dabe31..3c3739a 100644 --- a/src/cddb.c +++ b/src/cddb.c @@ -54,6 +54,9 @@ Boston, MA 02111-1307, USA. extern int __internal_cdindex_discid (struct disc_info disc, char *discid, int len); +extern int +regular_encode64 (unsigned char *outbuffer, unsigned char *inbuffer, + int inlen, int outlen); /* Static function prototypes */ static int cddb_sum (long val); @@ -77,8 +80,8 @@ int use_cddb_message = 1; int parse_disc_artist = 1; int cddb_submit_method = CDDB_SUBMIT_EMAIL; char *cddb_submit_email_address = CDDB_EMAIL_SUBMIT_ADDRESS; -char *proxy_auth_username = NULL; -char *proxy_auth_password = NULL; +char proxy_auth_username[256]; +char proxy_auth_password[256]; /* CDDB sum function */ static int @@ -360,6 +363,34 @@ cddb_process_url(struct cddb_host *host, const char *url) url += 3; + if(strchr(url, '@')) { +index = 0; +while(url[index] != ':' && url[index] != '\0' && + url[index] != '@' && index < 527) { + index++; + if(index > 256) +return -1; +} + +memset(proxy_auth_username, '\0', index + 1); +strncpy(proxy_auth_username, url, index); + +if(url[index] == ':') { + url += (index + 1); + index = 0; + while(url[index] != '\0' && url[index] != '@' && index < 527) { +index++; +if(index > 256) + return -1; + } + + memset(proxy_auth_password, '\0', index + 1); + strncpy(proxy_auth_password, url, index); +} + +url += (index + 1); + } + index = 0; while(url[index] != ':' && url[index] != '\0' && url[index] != '/' && index < 527) { @@ -564,8 +595,13 @@ cddb_write_serverlist(struct cddb_conf conf, fputs("ACCESS=LOCAL\n", cddbconf); if(conf.conf_proxy == CDDB_PROXY_ENABLED) -fprintf(cddbconf, "PROXY=http://%s:%d/\n";, - proxy.server_name, proxy.server_port); +if(proxy_auth_username && proxy_auth_password) + fprintf(cddbconf, "PROXY=http://%s:%...@%s:%d/\n";, + proxy_auth_username, proxy_auth_password, + proxy.server_name, proxy.server_port); +else + fprintf(cddbconf, "PROXY=http://%s:%d/\n";, + proxy.server_name, proxy.server_port); for(index = 0; index < list.list_len; index++) { switch(list.list_host[index].host_protocol) { case CDDB_MODE_HTTP: @@ -698,6 +734,47 @@ cddb_connect(struct cddb_server *server) return sock; } + +/* Generate an HTTP header for HTTP proxy auth if needed */ +static int +__internal_generate_proxy_auth(char *outbuffer, const char *username, + const char *password, int outbuffer_len) +{ + int index, inbuffer_len, userpass_len; + char *inbuffer, *userpass; + char proxy_auth_tag[] = "Proxy-Authorization: Basic "; + + userpass_len = strlen(username) + strlen(password) + 1; + + if((userpass = malloc(userpass_len + 1)) == NULL) +return -1; + + memset(userpass, '\0', userpass_len + 1); + snprintf(userpass, userpass_len + 1, "%s:%s", username, password); + + inbuffer_len = 128; + + if((inbuffer = malloc(inbuffer_len + 1)) == NULL) +return -1; + + memset(inbuffer, '\0', inbuffer_len + 1); + if(regular_encode64(inbuffer, userpass, userpass_len, inbuffer_len) < 0) +return -1; + + free(userpass); + + index = strlen(proxy_auth_tag); + if(index > outbuffer_len) +return -1; + + strncpy(outbuffer, proxy_auth_tag, index); + outbuffer += index; + strncpy(outbuffer, inbuffer, inbuffer_len); + + free(inbuffer); + + return 0; +} /* Connect to
Processed: cdcd fails to retrieve CDDB information
Processing commands for cont...@bugs.debian.org: > tag 485524 + confirmed pending Bug #485524 [cdcd] cdcd fails to retrieve CDDB information Added tag(s) confirmed and pending. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#485524: cdcd fails to retrieve CDDB information
tag 485524 + confirmed pending thanks Hi, thanks for the bug! This is due to cdcd having a hardcoded URL for www.freedb.org in conf.c, whereas FreeDB has since updated its database access through freedb.freedb.org . As the new maintainer for this package, I expect to get this fixed by the time the new libcdaudio is uploaded. Stay tuned! -- Zak B. Elep -- 1486 7957 454D E529 E4F1 F75E 5787 B1FD FA53 851D I like the idea of 256 bits, though: 32 for the (Unicode) character leaves room for 224 Bucky bits, which ought to be enough for anyone. -- Roland Hutchinson, in alt.folklore.computers signature.asc Description: This is a digitally signed message part
Bug#466920: cdcd: segfaults with 'rndplay' if no disc in drive
tag 466920 + confirmed thanks Hi, thanks for the bug! I can reproduce it on system here; expect a fix very soon. -- Zak B. Elep -- 1486 7957 454D E529 E4F1 F75E 5787 B1FD FA53 851D I like the idea of 256 bits, though: 32 for the (Unicode) character leaves room for 224 Bucky bits, which ought to be enough for anyone. -- Roland Hutchinson, in alt.folklore.computers signature.asc Description: This is a digitally signed message part
Processed: cdcd: segfaults with 'rndplay' if no disc in drive
Processing commands for cont...@bugs.debian.org: > tag 466920 + confirmed Bug #466920 [cdcd] cdcd: segfaults with 'rndplay' if no disc in drive Added tag(s) confirmed. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#544685: trousers_0.3.2-4(ia64/unstable): FTBFS: pointer vs int size issues
Package: trousers Version: 0.3.2-4 Severity: serious There was an error while trying to autobuild your package: > Automatic build of trousers_0.3.2-4 on caballero by sbuild/ia64 98 > Build started at 20090831-2304 [...] > ** Using build dependencies supplied by package: > Build-Depends: debhelper (>= 7), autotools-dev, libssl-dev, libtool, quilt [...] > tcs_evlog_imaem.c: In function 'ima_get_entries_by_pcr': > tcs_evlog_imaem.c:88: error: cast to pointer from integer of different size > tcs_evlog_imaem.c: In function 'ima_get_entry': > tcs_evlog_imaem.c:214: error: cast to pointer from integer of different size > tcs_evlog_imaem.c: In function 'ima_close': > tcs_evlog_imaem.c:294: error: cast to pointer from integer of different size > make[3]: *** [libtcs_a-tcs_evlog_imaem.o] Error 1 > make[3]: Leaving directory `/build/buildd/trousers-0.3.2/src/tcs' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/build/buildd/trousers-0.3.2/src' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/build/buildd/trousers-0.3.2' > dh_auto_build: make returned exit code 2 > make: *** [build] Error 1 > dpkg-buildpackage: error: debian/rules build gave error exit status 2 A full build log can be found at: http://buildd.debian.org/build.php?arch=ia64&pkg=trousers&ver=0.3.2-4 -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Abnehmen, jetzt sofort
Geht es Ihnen oft so, dass Ihre Augen ganz voller Neid auf der Figur der Personen haften, die es schaffen, ihr Wunschgewicht zu erhalten? Haben auch Sie sich schon mehrere Male an diesem Ideal versucht, sind bislang aber immer gescheitert und sind nun schon total frustriert? Geben Sie nicht auf denn hier ist eine gute Nachricht fuer alle Leute, die gerne schlanker werden wollen: http://groups.yahoo.com/group/beamshousedkwzmy -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
qsynth 0.3.4-1 MIGRATED to testing
FYI: The status of the qsynth source package in Debian's testing distribution has changed. Previous version: 0.2.5-2.2 Current version: 0.3.4-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
netdiscover 0.3beta6+20080409-4 MIGRATED to testing
FYI: The status of the netdiscover source package in Debian's testing distribution has changed. Previous version: 0.3beta6+20080409-3 Current version: 0.3beta6+20080409-4 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#522435: ncurses-term: /usr/share/terminfo/k/kon2 is a broken symlink
On 2009-04-03 20:20 +0200, Jakub Wilk wrote: > Package: ncurses-term > Version: 5.7+20090321-1 > Severity: normal > > $ ls -l /usr/share/terminfo/k/kon2 > lrwxrwxrwx 1 root root 3 Mar 30 21:41 /usr/share/terminfo/k/kon2 -> kon > > $ ls -l /usr/share/terminfo/k/kon > /bin/ls: cannot access /usr/share/terminfo/k/kon: No such file or directory > > $ dpkg -S /usr/share/terminfo/k/kon > dpkg: /usr/share/terminfo/k/kon not found. This file is in the kon2 package (maintainer CC'ed). If the kon2 -> kon symlink is necessary, the kon2 package should take it over. In any case, the dangling symlink does certainly not belong in ncurses-term. Sven -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#544613: the role of the ncurses -dbg packages
It seems to me that the relocation of the debug libraries in the "fix" for bug #532022 was wrong, because these files do not contain detached debugging symbols but rather different versions of the ncurses libraries, compiled with trace information and unstripped. The result is that we now have Lintian errors because dh_shlibdeps does not look in the directories where these files are located now and the packages thus lack a dependency on libc. Moreover, the user has to set LD_LIBRARY_PATH anyway to use the debug libraries; this needs to mentioned in the package descriptions. Sven -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of kradio_0.1.1.1~20061112-4_amd64.changes
kradio_0.1.1.1~20061112-4_amd64.changes uploaded successfully to localhost along with the files: kradio_0.1.1.1~20061112-4.dsc kradio_0.1.1.1~20061112-4.diff.gz kradio_0.1.1.1~20061112-4_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: Changing email addresses.
Processing commands for cont...@bugs.debian.org: > submitter 204325 che...@visi.com Bug #204325 [perl] rename: return code /w failed renames is true. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 215326 che...@visi.com Bug #215326 [dillo] dillo: Leaks memory, and on new browser it forks /wo cleaning up first. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 231964 che...@visi.com Bug #231964 [privoxy] privoxy: Not sutable for large or medium networks. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 236657 che...@visi.com Bug #236657 [x2x] x2x: with multihead "from" display full to display not accesable (invers of 191350) Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 243578 che...@visi.com Bug #243578 [gtk-gnutella] gtk-gnutella: TOS settings on some upload sockets is incorectly set. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 246321 che...@visi.com Bug #246321 [interchange-ui] configure: Starting Interchange Server: su. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 246361 che...@visi.com Bug #246361 [interchange] interchange: Wrong PID in pidfile, it is one too fue. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 260752 che...@visi.com Bug #260752 [xcdroast] xcdroast: Speed 0 is not, let cdrecord, auto detect speed, it's 1x. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 274623 che...@visi.com Bug #274623 [prelink] prelink: Unknown fatal error at src/layout.c:538. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 286759 che...@visi.com Bug #286759 [foomatic-filters] foo-rip: PPD: *Include directive ignored? Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 310417 che...@visi.com Bug #310417 [perl-modules] libnet-perl: Net/Cmd.pm(354) uninitialized value -> Net/NNTP.pm(673) Argument "" isn't numeric. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 217207 che...@visi.com Bug #217207 [mozilla-mailnews] mozilla-mailnews: KeepMailOnServer /w RemoveRemoveWRL, msg not RR when filtered. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 275541 che...@visi.com Bug #275541 [procps] procps: watch -d doesn't handel lines being removed effectivly(diff -B). Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 149680 che...@visi.com Bug #149680 [iproute] Trailing whitespace when listing tc qdiscs. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 268356 che...@visi.com Bug #268356 [snmpd] Updated avc802dot11 MIB Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 149706 che...@visi.com Bug #149706 [xqf] xqf should treat game type as case sensitive, making it lower case when it calles the game. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 202534 che...@visi.com Bug #202534 [ssh] ssh: XAUTHORITY not set for su. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 206044 che...@visi.com Bug #206044 [sawfish] sawfish: dose not treat nautils desktop icons as, clicable, windows. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 214029 che...@visi.com Bug #214029 [arpwatch] arpwatch: Cisco's bogus flip flop. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 215632 che...@visi.com Bug #215632 [xcdroast] xcdroast: Should close tray when closing burnscreen or exit. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 217194 che...@visi.com Bug #217194 [oidentd] oident: oidentd: Setup is too complex in nat/masq case. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > submitter 220528 che...@visi.com Bug #220528 [nestra] nestra: There is no sound support. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 225194 che...@visi.com Bug #225194 [wget] wget -c: Could use a overlapping or checksums to varify content. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 236950 che...@visi.com Bug #236950 [razor] razor-report: Reports mozilla deleted mail from mozilla mbox file. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 243567 che...@visi.com Bug #243567 [net-tools] /bin/netstat: netstat: Dosen't report TOS or socket options. Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 244101 che...@visi.com Bug #244101 [ifupdown] Please provide logical interface name to up/down commands Changed Bug submitter to 'che...@visi.com' from 'cheako...@yahoo.com' > submitter 246267 che...@visi.com Bug #246267 [xserver-xorg-core] xserver-xfree86: [directfb] Driver not supported. Bug #22
Processed: Re: Changing email addresses.
Processing commands for cont...@bugs.debian.org: > submitter 203947 che...@visi.com Bug #203947 [tkvnc] tkvnc: README is more informative than man page. Changed Bug submitter to 'che...@visi.com' from 'Mike Mestnik ' > thankyou Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
kradio_0.1.1.1~20061112-4_amd64.changes ACCEPTED
Accepted: kradio_0.1.1.1~20061112-4.diff.gz to pool/main/k/kradio/kradio_0.1.1.1~20061112-4.diff.gz kradio_0.1.1.1~20061112-4.dsc to pool/main/k/kradio/kradio_0.1.1.1~20061112-4.dsc kradio_0.1.1.1~20061112-4_amd64.deb to pool/main/k/kradio/kradio_0.1.1.1~20061112-4_amd64.deb Override entries for your package: kradio_0.1.1.1~20061112-4.dsc - source sound kradio_0.1.1.1~20061112-4_amd64.deb - optional sound Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 543013 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Abgenommen, gut gefuehlt
Kennen Sie das, dass Ihre Augen ganz sehnsuechtig auf der Figur der Leute ruhen, die es erreichen, ihr Traumgewicht zu haben? Haben auch Sie sich schon mehrmals an diesem Ideal die Zaehne ausgebissen, sind bisher aber immer gescheitert und sind nun schon total verzweifelt? Geben Sie nicht auf denn hier ist eine hervorragende Nachricht fuer alle Maenner und Frauen, die gerne schlanker waeren: http://groups.yahoo.com/group/fondragsw5x2fw -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org