Bug#773468: Fwd: missing check

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal in signal.c on line 105, 'raise(sig);' is run, but later on, on line 127, sig is checked to be within 0-9. either it should be checked on 105, or the check at 127 for < 0 should be removed. Thanks, -- -- Joshua

Bug#773469: Fwd: uninitalized variable

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal Hi, On line 1492 and 1493 of iobuf.c, '&len' is used to define the 'ret_len' in the file_filter, but len is never actually defined, leaving it open to strange interpretations in different enviroments. Thanks, --

Bug#773472: Fwd: (not "use after free, and double free")

2014-12-18 Thread Joshua Rogers
ed for the test if it's going to be freed beforehand. (In reality, it shouldn't be freed before it is sent to failure;) Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773471: Fwd: Double free

2014-12-18 Thread Joshua Rogers
_CARD_REMOVAL (ctrl, > rc); return rc; Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773470: Fwd: off-by-one

2014-12-18 Thread Joshua Rogers
erflow, or other problems down the line. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773473: Fwd: gpg return-after-free

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal Hi, In sm/gpgsm.c, on line 864, 'server' is freed, but then on line 867 it is returned. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org w

Bug#773474: Fwd: incorrect file handling

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal Hi, In app-openpgp.c on line 1462, 'popen' is used to open "command". Later on, on line 1472, "fclose" is used instead of pclose. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSC

Bug#773475: Fwd: missing va_end (x2)

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal Hi, in curl-shim.c, on line 167, the function is returned, but va_end is never run. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "

Bug#773481: bsd-mailx out-of-scape bug

2014-12-18 Thread Joshua Rogers
Package: bsd-mailx Version: 8.1.2-0.20131005cvs-1 Severity: normal Hi, In fio.c on line 592, "cp = expand(buf);" is run, which returns that argument. Below it on line 594, "return(cp);" is run, but it points to an out-of-scope 'buf' variable. Thanks, -- -- Joshua

Bug#773481: bsd-mailx

2014-12-18 Thread Joshua Rogers
Sorry, it's actually heirloom-mailx, not bsd-mailx. Can this be reassigned? Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773481: bsd-mailx

2014-12-18 Thread Joshua Rogers
On 19/12/14 07:38, Joshua Rogers wrote: > Sorry, it's actually heirloom-mailx, not bsd-mailx. > Can this be reassigned? > > Thanks, Nope! I'm wrong! It _is_ bsd-mailx. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-d

Bug#773475: [Pkg-gnupg-maint] Bug#773475: Fwd: missing va_end (x2)

2014-12-18 Thread Joshua Rogers
ly, I should have, but I looked at the bug report page and it seems that the develoeprs are inactive. I didn't really have a good look though, so I may have missed other activity. Anyways, if you could do the patch generation and fowarding, that would be great. I really can't be both

Bug#773472: Fwd: not "use after free, and double free"

2014-12-18 Thread Joshua Rogers
I messed up the line numbers on this. The first pwbuf is freed on line 2438, then the failure part is at 2509. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble?

Bug#773499: singleton used as array

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal in keyedit.c, on line 2478, 'prefs' is used as an array, but it's actually a singleton. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a su

Bug#773497: double file close

2014-12-18 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal In dotlock.c on line 682-683, close(fd) is attempted. If it succeeds, "goto write_failed" is executed. write_failed explicitly closes fd, leading to a double-close of fd. Thanks, -- -- Joshua Rogers <https://internot.in

Bug#773502: off-by-one memory assignment

2014-12-19 Thread Joshua Rogers
l need to check.) Thanks -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773507: explicit buffer overrun

2014-12-19 Thread Joshua Rogers
. If argc is 398, it will pass that check. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773518: explicit use-after-free

2014-12-19 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal in gpgsm.c on line 861-867, there is an explicit use-after-free, if 'fail' is true. keyserver_list_free does not return the function, leaving it to then return the freed value. Thanks, -- -- Joshua Rogers <https://internot.in

Bug#773520: use-after-free

2014-12-19 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal In ks-engine-hkp.c on line 509 'reftbl' is freed, but it is then used on line 511. I'm guessing this is a missing return;. Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to

Bug#773518: use-after-free

2014-12-19 Thread Joshua Rogers
Sorry, I already reported this before: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773473 Please close. Thanks, -- -- Joshua Rogers <https://internot.info/>

Bug#773521: incorrect memset

2014-12-19 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal on line 253 of ecdh.c, memset is called with a 0 fill value, which will do nothing. what's the point? Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org wit

Bug#773523: use-after-free v2

2014-12-19 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal In ldapserver.c on line 127, 'server' is freed, but it is then returned on line 130. This code looks like a copy and paste from gpgsm.c (see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773473) Thanks, -- -- Joshua Rog

Bug#773541: uninitalized pointer read

2014-12-19 Thread Joshua Rogers
Package: gnupg2 Version: 2.1.1 Severity: normal Hi, On line 204 of crlfetch.c 'hd' is run through http_get_status_code, but it is possible for 'hd' not to be set, if opt.disable_http is true.(see lines 192-202) Thanks -- -- Joshua Rogers <https://internot.info/>

Bug#773474: [PATCH] * scd/app-openpgp.c: (get_public_key) correctly close 'fp' upon use.

2014-12-19 Thread Joshua Rogers
-- Inside the get_public_key function, 'fp' was opened using popen, but incorrectly closed using fclose. >From pclose(2): The return value from popen() is a normal standard I/O stream in all respects save that it must be closed with pclose() rather than fclose(3). --- scd/a

Bug#773518: Closing

2014-12-19 Thread Joshua Rogers
Closing. -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#773570: off-by-one

2014-12-19 Thread Joshua Rogers
->refId, TSYNC_REF_LOCAL, TSYNC_REF_LEN); > 354strncpy((char *)&pp->refid, TSYNC_REF_LOCAL, TSYNC_REF_LEN); Thanks, -- -- Joshua Rogers <https://internot.info/> -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubsc

Bug#773473: [PATCH] * sm/gpgsm.c: (parse_keyserver_line) return false on 'fail'.

2014-12-20 Thread Joshua Rogers
-- If something in the keyserver_line failed, parse_keyserver_line would free 'server', but then return it afterwards, leading to a use-after-free. sm/gpgsm.c, in the function main() correctly checks whether the return of parse_keyserver_line is false. --- sm/gpgsm.c | 1 + 1 file changed, 1 i

Bug#773523: [PATCH] * dirmngr/ldapserver.c (ldapserver_parse_one) return NULL on 'fail'.

2014-12-20 Thread Joshua Rogers
-- If something inside the ldapserver_parse_one function failed, 'server' would be freed, then returned, leading to a use-after-free. This code is likely copied from sm/gpgsm.c, which was also susceptible to this bug. --- dirmngr/ldapserver.c | 1 + 1 file changed, 1 insertion(+) diff --git a

Bug#771644: apt-mark says options before tested / error.

2014-11-30 Thread Joshua Rogers
d 'grep set to automatically installed.' should never be outputted. -- -- Joshua Rogers <https://internot.info/> signature.asc Description: OpenPGP digital signature

Bug#771738: apt-get segfaults on '[' in sources.list

2014-12-01 Thread Joshua Rogers
likely in sourcelist.cc, here: > char *I; // CNC:2003-02-20 - Do not break if '#' is inside []. for (I > = Buffer; *I != 0 && *I != '#'; I++) if (*I == '[') I = strchr(I + 1, > ']'); *I = 0; Thanks, -- -- Joshua Rogers <https://internot.info/> signature.asc Description: OpenPGP digital signature

Bug#872463: dhclient regex misses 7 length dhclient xid

2017-08-17 Thread Joshua Powers
} )?on [[:alnum:].-]+ to [.0-9]{7,15} port 67( \(xid=0x[0-9a-f]{8}\))?$ Either get rid of the {8} or expand it to include more lengths. -- Joshua Powers Ubuntu Server Canonical Ltd

Bug#864773: pybliographer: BibTeX writer fails on preamble

2017-06-14 Thread Joshua Pritikin
Package: pybliographer Version: 1.2.16-1 Severity: normal Dear Maintainer, * What led up to the situation? I added a preamble to my bibtex file * What exactly did you do (or not do) that was effective (or ineffective)? The problem is lines 503 to 506 in /usr/share/pybliographer/Pyb

Bug#873658: (no subject)

2017-09-05 Thread Joshua Honeycutt
The Avahi code is used for some auto-configuration of client-server connection. I am waiting on a newer release, but at that point I expect to mark this bug as wontfix. My reasoning will be as follows: 1. Switching to the native API is not straightforward to me. 2. I don't know that any funct

Bug#867314: openjdk-8-jre-headless: openjdk unwinder for gdb crashes

2017-07-05 Thread Joshua Campbell
The problem seems to be solved by ln -s /usr/lib/debug/usr/lib/jvm/java-8-openjdk-amd64 /usr/lib/debug/usr/lib/jvm/java-1.8.0-openjdk-amd64 On Wed, Jul 5, 2017 at 10:36 AM, Joshua Charles Campbell wrote: > Package: openjdk-8-jre-headless > Version: 8u131-b11-2 > Severity: normal

Bug#875199:

2017-09-20 Thread Joshua Honeycutt
Synergy can already build against Qt5. I've made the changes in my repository to do so. Currently upstream is transitioning to a new GUI (closed source.) I'm waiting for a new release, but I expect it will probably remove the current GUI completely (and the Qt dependency.) If you would like me to

Bug#865303: Java JNI crashes post CVE-2017-1000364 fixes post 4.9.30-2+deb9u2

2017-07-07 Thread Joshua Campbell
eported by pmap(1) or (gdb) info proc maps. The stack pages are NO LONGER marked by the kernel as [stack]; and the kernel stack-guard page is now frozen in place for the remainder of the process execution. -- Joshua Charles Campbell Ph.D. Student and Research Assistant Department of Computing Sci

Bug#868148: RFS: synergy/1.8.8-stable+dfsg.1-1

2017-07-12 Thread Joshua Honeycutt
am version. * Added delete_temp_config.patch to enable deletion of qt_temp files. Closes: # 765955 * Remove clipboardchunktests.patch (merged upstream) Regards, Joshua Honeycutt

Bug#868148: RFS: synergy/1.8.8-stable+dfsg.1-1

2017-07-13 Thread Joshua Honeycutt
On Wed, Jul 12, 2017 at 8:28 AM, Andreas Ronnquist wrote: > > I'll sponsor this if you want me to. (Since I asked for a new unstable > release ;) > I would appreciate it. I had just done the upload the day before I got your request, but it was good motivation to do the RFS

Bug#868524: libmtp9: Regresssion : Browse the folder of my smartphone take several minutes.

2017-07-16 Thread joshua claveau
Package: libmtp9 Version: 1.1.12-1~bpo8+1 Severity: important Dear Maintainer, I connect my smartphone (samsung galaxy A3 2017) with usb cable, and open it with nautilus. Nautilus take several minutes (more of 5 min) befor displaying the content of the smartphone (sd card and phone itself). When

Bug#860253: xscreensaver: Password dialog is not visible sometimes

2017-04-13 Thread Joshua Honeycutt
Package: xscreensaver Version: 5.36-1 Severity: important Dear Maintainer, Sometimes when xscreensaver is locked and I move the mouse or touch a key the password dialog does not appear. xscreensaver still responds to the password being entered and unlocked. The mouse cursor is still bounded by th

Bug#860253: xscreensaver: Password dialog is not visible sometimes

2017-04-13 Thread Joshua Honeycutt
On Thu, Apr 13, 2017 at 12:03 PM, Jamie Zawinski wrote: > Is the screen completely black? Do you have xscreensaver configured to be > black-only or is it running savers? If you are not running savers, try doing > that, > to see if, when it is in this "invisible" mode, there are any pixels visible

Bug#860253: xscreensaver: Password dialog is not visible sometimes

2017-04-19 Thread Joshua Honeycutt
Jamie, I did some more experimentation using other window environments (openbox, KDE, Gnome) and I could not reproduce the invisible dialog. This may just be a caused by the way Xfce handles display changes, but I don't know enough to come to any conclusion.

Bug#852081: ITA: synergy -- Share mouse, keyboard and clipboard over the network

2017-01-22 Thread Joshua Honeycutt
Control: retitle -1 ITA: synergy -- Share mouse, keyboard and clipboard over the network Owner: joshua.honeyc...@gmail.com I would like to adopt synergy. - Joshua Honeycutt

Bug#653959: citadel-server was auto-selected and installed by dist-upgrade for what appears to be no good reason, and apt-get purge citadel-server failed to back out all system changes

2017-01-24 Thread Joshua Hudson
Apt-get dist-upgrade should not be installing new auto-start publicly listening services. On Tuesday, January 24, 2017, Michael Meskes wrote: > severity normal > thanks > > On Sun, Jan 01, 2012 at 02:42:07PM -0800, Joshua wrote: > > Source: citadel-server > > Vers

Bug#854212: RFS: synergy/1.8.7-stable+dfsg.1-1 [ITA]

2017-02-04 Thread Joshua Honeycutt
out dialog. Regards, Joshua Honeycutt

Bug#842770: RFS: synergy/1.4.16-1.1 [NMU]

2016-10-31 Thread Joshua Honeycutt
-x https://mentors.debian.net/debian/pool/main/s/synergy/synergy_1.4.16-1.1.dsc Changes since the last upload: * Non-maintainer upload. * Added debian_google-test.patch to build against Debian's google-mock and libgtest-dev packages. Closes: #812303 Regards, Joshua Honeycutt

Bug#847199: Not all interfaces display when >~30 interfaces

2016-12-06 Thread Joshua Powers
+ bufsiz += n; + } if (bufsiz < 0) die(1, "read: %s", PROC_NET_DEV_PATH); else if (bufsiz < 200) [1] https://github.com/jjo/nicstat/commit/3c2407da66c2fd2914e7f362f41f729cc21ff1e4 -- Joshua Powers Ubuntu Server Canonical Ltd

Bug#812303:

2016-10-23 Thread Joshua Honeycutt
st-dev. I intend to do a NMU for this fix. Description: Builds against Debian packaged google-mock and libgtest-dev Author: Joshua Honeycutt Forwarded: not-needed Last-Update: 2016-10-23 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -15,13 +15,11 @@ # along with this program. I

Bug#812303: synergy: diff for NMU version 1.4.16-1.1

2016-10-23 Thread Joshua Honeycutt
build against Debian's +google-mock and libgtest-dev packages. Closes: #812303 + + -- Joshua Honeycutt Sun, 23 Oct 2016 23:36:22 -0500 + synergy (1.4.16-1) unstable; urgency=low * New upstream version. diff -Nru synergy-1.4.16/debian/control synergy-1.4.16/debian/control --- synergy-1.4

Bug#835205: libsqlite3-0: Please backport fix for segfault following heavy SAVEPOINT usage from 3.12.0

2016-08-23 Thread Joshua Phillips
Package: libsqlite3-0 Version: 3.8.7.1-1+deb8u1 Severity: normal Tags: upstream patch libsqlite3 crashes following heavy SAVEPOINT usage, for example when running Django tests. SQLite bug: https://www.sqlite.org/src/info/7f7f8026 Patch: https://www.sqlite.org/src/info/c4b9c611 This has been fixe

Bug#839551:

2016-10-01 Thread Joshua Hudson
Patch included; I sent the same patch upstream but they seem checked out. diff -ru stock/rdesktop-1.8.3/doc/rdesktop.1 work/rdesktop-1.8.3/doc/rdesktop.1 --- stock/rdesktop-1.8.3/doc/rdesktop.1 2016-10-01 12:21:55.0 -0700 +++ work/rdesktop-1.8.3/doc/rdesktop.1 2016-10-01 13:47:33.91317679

Bug#1065335: gdebi: Install closes instantly if launched from .deb file dependency but works if GDebi is opened first

2024-03-02 Thread Joshua Richards
Package: gdebi Version: 0.9.5.7+nmu6 Severity: normal Tags: patch X-Debbugs-Cc: joshuapricha...@gmail.com Dear Maintainer, * What led up to the situation? Opened a .deb file from file manager / browser * What exactly did you do (or not do) that was effective (or ineffective)? Edited

Bug#1077554: /usr/sbin/sshd: ssh server ChrootDirectory %h does not honor mount -o noexec

2024-07-29 Thread Joshua Hudson
Package: openssh-server Version: 1:9.2p1-2+deb12u3 Severity: normal File: /usr/sbin/sshd On a previous deploy, ops had configured something like Subsystem sftp internal-sftp Match Group filedrop ChrootDirectory %h AllowTCPForwarding no X11Forwarding no That build of ssh seems to hav

Bug#1077554:

2024-07-29 Thread Joshua Hudson
I've since learned this bug is upstream; and have most of a fix. Basically I'm bogged down in autoconf; which makes it unsuitable for upstream but I could provide a debian specific patch without autoconf. I don't think the openssh team likes gmail much; the mailing list for reporting anything upst

Bug#1068024: Potential solution to your downgrade problem in dpkg

2024-03-30 Thread Joshua Hudson
The dpkg -> xz-utils downgrade problem has a suggestion that suggests itself. 1) Downgrade dpkg's dependency to the last known good. It doesn't matter how old so long as it can read the file formats. I understand this is likely to be 5.4.1. 2) Statically link all the decompressor libraries into d

Bug#1068181: asunder: Asunder package calls wavpack version not present (5.6.0-1+b1). 5.7.0-1 in repo. Cannot install.

2024-04-01 Thread Joshua Aspinall
Package: asunder Version: 3.0.1+ds-1 Severity: normal X-Debbugs-Cc: joshaspin...@member.fsf.org Dear Maintainer, Cannot install Asunder on testing under normal conditions due to wavpack version not present (reports file not found) Looking through the packages browser can see a newer version (5.

Bug#1068239: jq: JSON filters can be fooled by \u0041 or other escapes in object names

2024-04-02 Thread Joshua Hudson
Package: jq Version: 1.6-2.1 Severity: important Consider this JSON file: { "\u0041PIModule": "/test2.dll", "APIModule": "/test.dll" } On running jq .APIModule < test.json, the output is "/test.dll". The expected output is "/test2.dll", "/test.dll", or alternately an error messag

Bug#1068181: asunder: Additional Information following maintainer response.

2024-04-03 Thread Joshua Aspinall
note that installing grimripper fails in the same manner. :~$ sudo apt update && sudo apt install asunder [sudo] password for joshua: Hit:1 http://deb.debian.org/debian trixie InRelease Hit:2 http://security.debian.org/debian-security trixie-security InRelease Fetched 1,493 B in 0s (5

Bug#1011594: Re: kotlin-mode needs a source-only upload for testing migration

2023-02-04 Thread Joshua Peisach
and fixed the changelog line being too long, updated changelog time again, committed and pushed. If possible, can you review the branch? Thanks again for checking everything out, and I am so sorry for all the problems created. -Josh From: Nicholas D Steeves S

Bug#1022347: cppimport: FTBFS: dpkg-source: error: aborting due to unexpected upstream changes, see /tmp/cppimport_22.08.02-1.diff.gO41k5

2022-11-17 Thread Joshua Peisach
Hi Lucas, VCS has 22.08.02-2 which should fix this. On Sun, 23 Oct 2022 14:59:40 +0200 Lucas Nussbaum wrote: > Source: cppimport > Version: 22.08.02-1 > Severity: serious > Justification: FTBFS > Tags: bookworm sid ftbfs > User: lu...@debian.org > Usertags: ftbfs-20221023 ftbfs-bookworm > > Hi,

Bug#1029167: mozjs78: Fails to build on armhf and armel

2023-01-18 Thread Joshua Peisach
CJS ported to mozjs78 in October 2020, and Cinnamon is still finishing their 5.6x releases/making cleanups. Considering upstream uses Ubuntu Jammy, mozjs102 isn’t an option unless they are willing to build it for their main development target. I think Cjs should rebase for mozjs91, Especially i

Bug#1011594: (thread)

2023-01-25 Thread Joshua Peisach
Hi Nicholas, I have imported the latest upstream snapshot into Salsa :) -Josh

Bug#1011594: Re: kotlin-mode needs a source-only upload for testing migration

2023-01-29 Thread Joshua Peisach
Hi, Review on the repo here on this bug is okay! I am sending this to the bug email, and I've also updated the maintainer. Thanks -Josh From: Nicholas D Steeves Sent: Friday, January 27, 2023 2:59 AM To: Joshua Peisach ; 1011...@bugs.debian.org

Bug#1050483:

2023-08-25 Thread Joshua Hudson
Trying on sid (2023-08-25) objdump fails with: "./mv: file format not recognized" and readelf still works. objdump version from sid: GNU objdump (GNU Binutils for Debian) 2.41

Bug#1050578:

2023-08-26 Thread Joshua Hudson
Bug verified *upstream* on stock kernel version 6.4.12

Bug#1036773: cloud.debian.org: During vagrant up, mounting NFS fails

2023-05-25 Thread Joshua Kugler
Package: cloud.debian.org Severity: important Dear Maintainer, *** Reporter, please consider answering these questions, where appropriate *** * What led up to the situation? I tried to use the debian/testing64 vagrant box. * What exactly did you do (or not do) that was effective (

Bug#1037516: ircd-hybrid hates winbindd users

2023-06-13 Thread Joshua Hudson
Package: ircd-hybrid Version: 1:8.2.43+dfsg.1-1 Severity: important Tags: newcomer upstream Dear Maintainer, When connecting to ircd-hybrid on localhost, users from a Windows domain get kicked out with invalid user. I tracked this down to the source code; ircd-hybrid believes that \ is an inva

Bug#1037539: multipath-tools: the /lib/udev/rules.d/60-multipath.rules file is missing

2023-06-13 Thread Joshua Huber
d65d85070008ac7142a (HEAD -> master) Author: Joshua Huber Date: Tue Jun 13 14:15:30 2023 -0400 account for upstream multipath.rules changing to a generated file diff --git a/debian/rules b/debian/rules index 28839b67..e56419ae 100755 --- a/debian/rules +++ b/debian/rules @@ -47,9 +47,10 @@ ov

Bug#1065754: timidity-daemon: Timidity STILL breaks sound after install by adding itself the the audio group in /etc/group

2024-03-09 Thread Joshua Richards
Package: timidity-daemon Version: 2.14.0-8.1 Severity: critical Justification: breaks unrelated software X-Debbugs-Cc: joshuapricha...@gmail.com Dear Maintainer, * What led up to the situation? I installed Timidity. It doesn't break until after a reboot (which may take weeks for some people).

Bug#425799: closed by Daniel Baumann <[EMAIL PROTECTED]> (reply to [EMAIL PROTECTED]) (Re: libc6-i386 tries to overwrite /lib32 symlink made by ncurses)

2007-05-24 Thread Joshua Kwan
oming months since people will never see these two releases, but it's all about doing things right. Thanks and please don't close the bug again without further discussion. -- Joshua Kwan -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#426648: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426632: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426664: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426676: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426673: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426675: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua

Bug#426678: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426665: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua

Bug#426649: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426633: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426639: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426655: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426667: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426661: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426645: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426636: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426652: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua

Bug#426668: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UNSUBSCR

Bug#426647: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua

Bug#426671: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426637: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan

Bug#426653: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
package on the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua

Bug#426669: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426642: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426658: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UNSUBSCR

Bug#426644: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426660: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426677: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426635: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
n the same day to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UN

Bug#426651: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
to mitigate uninstallable packages. (But if anyone complains, tell them that they're using unstable, and should live with it.) Oh, and sorry for the belated transition -- I've been quite busy with school. Anyway, let me know if there are any problems. -- Joshua Kwan -- To UNSUBSCRIB

<    1   2   3   4   5   6   7   8   9   10   >