Bug#985478: [v2 PATCH] options: Always reset OPTIND in getoptsreset

2024-05-19 Thread Herbert Xu
l OPTIND" as this simply trashes the caller's getopts state. Reported-by: наб Reported-by: Harald van Dijk Signed-off-by: Herbert Xu diff --git a/src/options.c b/src/options.c index 4d0a53a..c74e4fe 100644 --- a/src/options.c +++ b/src/options.c @@ -393,7 +393,7 @@ setcmd(int argc, ch

Bug#985478: [PATCH] options: Always reset OPTIND in getoptsreset

2024-05-19 Thread Herbert Xu
ber(value) ?: 1; + shellparam.optind = 1; shellparam.optoff = -1; } -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#547902: Upstream fix coming soon

2024-05-19 Thread Herbert Xu
This will be fixed upstream soon with https://patchwork.kernel.org/project/dash/patch/fd52d05affd400c2c2f2ba238ff83555d11ca648.1716096097.git.herb...@gondor.apana.org.au/ Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert

Bug#935781: manpages: nsswitch.conf should document automount option

2023-12-26 Thread Herbert Xu
5/RHEL-5-manual/Deployment_Guide-en-US/s1-nfs-client-config-autofs.html Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#1053550: IKEv2 regression when IP address changes behind NAT-T

2023-10-06 Thread Herbert Xu
s, or it should tear down the old SAs and create new ones with the new address. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#874264: [PATCH] exec: Check executable bit when searching path

2021-11-09 Thread Herbert Xu
ash > Init: systemd (via /run/systemd/system) > > Versions of packages dash depends on: > ii debianutils 4.8.1.1 > ii dpkg 1.18.24 > ii libc62.24-11+deb9u1 > > dash recommends no packages. > > dash suggests no packages. > > -- debconf in

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
On Thu, Dec 10, 2020 at 10:20:29AM -0500, Jeff King wrote: > > It seems like it happens for "foo/", too. If I compile: I think the key is that dash uses GLOB_NOMAGIC. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
ot;foo". This should return no match. If you change the pattern to "foo/", then it also matches but returns with the string "foo/" as expected. The only flag we pass to glob(3) is GLOB_NOMAGIC. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
the problem doesn't occur for "foo/". Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-09 Thread Herbert Xu
pana.org.au/ Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-06 Thread Herbert Xu
f that child. Since the child was killed, we need to ignore that, so this works for me: wait $MONPID 2> /dev/null || : Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: [PATCH] jobs: Only block in waitcmd on first run

2020-12-01 Thread Herbert Xu
Only clear gotsigchld when waiting...") Reported-by: Michael Biebl Signed-off-by: Herbert Xu diff --git a/src/jobs.c b/src/jobs.c index 3417633..516786f 100644 --- a/src/jobs.c +++ b/src/jobs.c @@ -81,6 +81,7 @@ #define DOWAIT_NONBLOCK 0 #define DOWAIT_BLOCK 1 #define DOWAIT_WAITCMD

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
ndeed a change in behaviour which is undesirable. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
f the bash script rather than bash itself. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
are no other children around that you don't know of. In the original bug, the proper solution is to wait on the PID that the script just sent a kill signal to. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
On Tue, Dec 01, 2020 at 10:55:06AM +, Harald van Dijk wrote: > > You wrote: "So the problem is really in the parent of this shell, which > appears to be bash:" You should read my follow-up email too that suggested changing the systemd script. Cheers, -- Email: Herbert

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
for the last command in a list when it can just > exec() without a fork() instead. A minimal example without an explicit exec > is > > bash -c 'dash -c ": & wait" <(sleep 1d)' I'm not sure about that because bash itself is still hanging around, if it were really the -c optimisation then bash should not appear in the ps output at all. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 05:06:18PM +1100, Herbert Xu wrote: > > For some reason this is causing the final two tee's to be created > as children of debian/tests/timedated rather than the bash shell. An alternative to changing the parent is of course to do wait $MONP

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 04:38:37PM +1100, Herbert Xu wrote: > > FWIW I'm unable to reproduce it with autopkgtest. This is what > I get: > > root@test0:~# autopkgtest --test-name=timedated systemd-246.6/ -B -- lxc -s > autopkgtest-sid > autopkgtest [16:32:45]:

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
PASS autopkgtest [16:33:32]: summary timedatedPASS root@test0:~# Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 04:42:03PM +1100, Herbert Xu wrote: > > Nevermind, I see that the script has been modified to use bash. > > I can reproduce the problem now so it's all good. OK the problem is this: sh -c 'sleep 1d& exec $MYSHELL -c "sleep 1& w

Bug#974900: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-11-16 Thread Herbert Xu
Andrej Shadura wrote: > > this is another bug report I have received. This is a bug in glob(3). Please dup and reassign to libc6. There is a patch in the queue to disable glob by default again. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key

Bug#858288: [PATCH] eval: Check nflag in evaltree instead of cmdloop

2020-06-04 Thread Herbert Xu
This patch moves the nflag check from cmdloop into evaltree. This is so that nflag will be in force even if we enter the shell via a path other than cmdloop, e.g., through sh -c. Reported-by: Joey Hess Signed-off-by: Herbert Xu diff --git a/src/eval.c b/src/eval.c index d10be38..9476fbb

Bug#782540: dash: wait returns whenever a child process is stopped/continued

2020-06-02 Thread Herbert Xu
This is fixed in dash 0.5.11. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#716789: dash: Dash sometimes misbehaves when backticks are included after an || operator

2020-06-02 Thread Herbert Xu
This has been fixed in dash 0.5.11. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#716789: dash: Dash sometimes misbehaves when backticks are included after an || operator

2020-05-28 Thread Herbert Xu
This has been fixed upstream with https://git.kernel.org/pub/scm/utils/dash/dash.git/commit/?id=51e2d88d6e513150a76c007111bbee21bb922c33 Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#755446: [PATCH] redir: Retry open64 on EINTR

2020-05-28 Thread Herbert Xu
retry the open64 call if necessary. It also calls sh_error when appropriate. Fixes: 3800d4934391 ("[JOBS] Fix dowait signal race") Reported-by: Samuel Thibault Signed-off-by: Herbert Xu diff --git a/src/input.c b/src/input.c index 17544e7..6103312 100644 --- a/src/input.c +++ b/s

Bug#436466: dash: Please optimise single command given to -c to exec it

2020-05-27 Thread Herbert Xu
e forgotten by someone who understands the > > problems in 642922, which seem to have been fixed elsewhere. > > Thanks for the reminder, Tim. Indeed, this won't be forgotten. Looks it had been forgotten :) I gather that the ocamlbuild bug has been fixed so can this be reinstated

Bug#960249: inn2: Please enable DO_RNEWS_SAVE_BAD for rnews

2020-05-24 Thread Herbert Xu
; > Also note the "-v" option, already present but somehow undocumented in the > man page, that will log the reason of the rejection. Thanks for the change! -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#960249: inn2: Please enable DO_RNEWS_SAVE_BAD for rnews

2020-05-11 Thread Herbert Xu
ration option would be the best. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#759230: shell: Always use explicit large file API

2020-05-07 Thread Herbert Xu
There are some remaining stat/readdir calls in dash that may lead to spurious EOVERFLOW errors on 32-bit platforms. This patch changes them (as well as open(2)) to use the explicit large file API. Reported-by: Tatsuki Sugiura Signed-off-by: Herbert Xu diff --git a/configure.ac b/configure.ac

Bug#935781: manpages: nsswitch.conf should document automount option

2019-08-26 Thread Herbert Xu
Package: manpages Version: 4.16-2 Severity: normal There is an undocumented automount option in nsswitch.conf which can be used to control how auto.master(5) looks up sources starting with the plus sign. This should be documented. Please see: http://web.mit.edu/rhel-doc/5/RHEL-5-manual/Deployme

Bug#492354: closed by Sandro Tosi (Re: transmission: Add option to specify client IP)

2017-01-08 Thread Herbert Xu
;m reopening it. If you have a problem with the upstream then it's up to you to sort it out. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#75773: closed by Debian FTP Masters (Bug#796274: Removed package(s) from unstable)

2015-08-21 Thread Herbert Xu
; that we couldn't deal with your issue properly. The bug still exists in gcc. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#76754: closed by David Kalnischkies (Re: apt: race when installing new packages that conflict with old ones)

2015-08-14 Thread Herbert Xu
les in the old package (the new package should probably have a Replaces header too), and then remove the remaining bits of the old package. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#85535: closed by Debian FTP Masters (Bug#789156: Removed package(s) from unstable)

2015-06-23 Thread Herbert Xu
to this email. Reopening as bug is still present. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#204687: closed by Debian FTP Masters (Bug#789156: Removed package(s) from unstable)

2015-06-23 Thread Herbert Xu
> by > replying to this email. Reopening as bug is still present. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of &qu

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-27 Thread Herbert Xu
On Tue, Apr 28, 2015 at 05:15:59AM +0200, Marco d'Itri wrote: > On Apr 28, Herbert Xu wrote: > > > The problem is that udev does more than just provide /dev. It also > > probes PCI devices for example. So I need it to still do that but > > leave /dev alone. > S

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-27 Thread Herbert Xu
On Mon, Apr 27, 2015 at 05:30:44PM +0200, Michael Biebl wrote: > > If you don't use udev, simply don't start it? The problem is that udev does more than just provide /dev. It also probes PCI devices for example. So I need it to still do that but leave /dev alone. Cheers, -- E

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-26 Thread Herbert Xu
my way without screwing other things up. As you no longer provide that method, I need another way of telling it to not screw with my /dev setup. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSC

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-26 Thread Herbert Xu
On Mon, Apr 27, 2015 at 05:01:54AM +0200, Michael Biebl wrote: > Am 27.04.2015 um 04:50 schrieb Marco d'Itri: > > On Apr 27, Herbert Xu wrote: > > > >> Well I still need it so please keep this open. > > Can you clarify your use case? > > Did you e

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-26 Thread Herbert Xu
On Mon, Apr 27, 2015 at 04:50:51AM +0200, Marco d'Itri wrote: > On Apr 27, Herbert Xu wrote: > > > Well I still need it so please keep this open. > Can you clarify your use case? > Did you experiment with a non-default location for tmpdevfs on > a systemd-enabled sys

Bug#767551: closed by Michael Biebl (Re: Bug#767551: udev: udev_root support missing)

2015-04-26 Thread Herbert Xu
e by the upstream > > maintainers and/or how it would interact with systemd.) > > Don't see a point keeping this bug report open. Thus closing. Well I still need it so please keep this open. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PG

Bug#782561: please backport commit ccfe8c3f7e52 from upstream

2015-04-20 Thread Herbert Xu
ears to be making sure that your input packet is fragmented. That should then activate the kmalloc path and lead to the memory corruption. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE

Bug#501566: [MAN] Clarify two redirection mechanisms

2014-12-10 Thread Herbert Xu
r ones, but I can't imagine anyone > complaining about the correctness or accuracy of it. Yes this sounds good to me. Someone please create a patch for it. BTW, one of you guys dropped me from the CC list again. Please don't do that. Thanks, -- Email: Herbert Xu

Bug#576503: 'man dash' typo: "the shell .... proceed onto"

2014-11-16 Thread Herbert Xu
ug=576503 Patch applied. However, I had to manually apply it because you did not generate the patch from the top of the source tree with -p1. Please ensure future submissions are generated correctly. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gond

Bug#646847: Redirection: interval file descriptor (0-9)

2014-11-16 Thread Herbert Xu
.cgi?bug=646847 Applied. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#501566: dash: details of redirection/duplication in manpage are reversed

2014-11-11 Thread Herbert Xu
es that sounds much better. Please send a patch. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#646847: dash.1 - Confusion between two pages c[h]sh

2014-11-10 Thread Herbert Xu
g to add chsh there just because there was an earlier reference. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of &

Bug#501566: dash: details of redirection/duplication in manpage are reversed

2014-11-10 Thread Herbert Xu
n1] Ns \*[Gt]& Ns n2 > -Duplicate standard output (or n1) to n2. > +Duplicate standard output (or n1) from n2. > .It [n] Ns \*[Gt]&- > Close standard output (or n). > .It [n] Ns \*[Lt]\*[Gt] file I'm sorry but this patch looks wrong and the text looks correct to me as is.

Bug#646847: dash.1 - Confusion between two pages c[h]sh

2014-11-10 Thread Herbert Xu
=646847 This patch also appears bogus as csh is an alternative to dash. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject o

Bug#646847: (none)

2014-11-10 Thread Herbert Xu
https://patchwork.kernel.org/project/dash/list/ if anyone is interested. FWIW patchwork does not like empty Subjects. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs

Bug#379227: [PATCH 1/9] [BUILTIN] Handle embedded NULs correctly in printf

2014-10-27 Thread Herbert Xu
termine the length of the output string, and then use a sequence of Xs of the same length as input to the underlying C printf to determine the amount of leading and trailing padding. Finally we replace the Xs with the actual string before writing it out. In

Bug#503840: [BUILTIN] Handle -- in dotcmd

2014-10-27 Thread Herbert Xu
commit 12ad48bb31b003eb6d3106478b7760a031969a36 Author: Herbert Xu Date: Mon Oct 27 16:56:46 2014 +0800 [BUILTIN] Handle -- in dotcmd This patch adds a nextopt call in dotcmd in order to handle --. Reported-by: Stephane Chazelas Signed-off-by: Herbert Xu diff --git

Bug#482999: dash: builtin function 'jobs -p' doesn't work as expected

2014-10-27 Thread Herbert Xu
sleep 1000 & > $ sleep 100 & > > $ for i in `jobs -p`; do echo $i; done # doesn't work > $ jobs -p | xargs # doesn't work > > only working way is redirecting output to the file > > $ jobs -p > /tmp/pids # this works

Bug#332954: [BUILTIN] Allow return in loop conditional to set exit status

2014-10-06 Thread Herbert Xu
commit f14b4626eb5c1c2fda137e7d1520c5f1cb7e85c4 Author: Herbert Xu Date: Mon Oct 6 21:22:43 2014 +0800 [BUILTIN] Allow return in loop conditional to set exit status https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=332954 When return is used in a loop conditional the exit

Bug#186994: closed by Stéphane Aulery (bash: tilde expansion inconsistency)

2014-04-24 Thread Herbert Xu
ith bash 4.2+dfsg-0.1 and it still does exactly the same thing. Did you actually test with -o posix? Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.deb

Bug#662003: apt-move with SHA256 support?

2012-03-30 Thread Herbert Xu
Hi: Do we still need MD5 sums in the Packages file? If not I'd suggest simply changing all existing references to md5 with sha256 and it should just work. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubke

Bug#643564: dhcp: Stop using obsolete SOCK_PACKET and skip VLAN-tagged packets

2012-02-25 Thread Herbert Xu
Hi: Here's a hack I just made up to make DHCP skip tagged packets. In order to do so I've switched from the long-obsolete SOCK_PACKET interface to AF_PACKET+SOCK_RAW. Obviously you'll need to clean this up. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~h

Bug#485070: [PATCH] crypto: padlock-aes - Make module loading even quieter when hardware is missing

2011-08-02 Thread Herbert Xu
ge indicating initialization failing or succeeding. > > This avoids occasional messages in syslog of the form > > padlock_aes: VIA PadLock not detected. > > Signed-off-by: Jonathan Nieder Patch applied. Thanks Jonathan! -- Email: Herbert Xu Home Page: http://gondor.a

Bug#485070: cryptsetup: "FATAL" padlock_{aes,sha} error during boot

2011-07-29 Thread Herbert Xu
user-space and needs to be fixed there. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#595063: read() builtin doesn't read integer value /proc files (but bash's does)

2010-11-28 Thread Herbert Xu
shared. This happens if stdin is redirected inside a I'm with Jilles on this. I also don't particularly feel like bloating dash just because of the borked /proc interface when there is a perfectly adequate work-around in "cat". value=$(cat /proc/file) Ch

Bug#596802: linux-image-2.6.32-5-xen-amd64: oops in skb_gso_segment

2010-09-15 Thread Herbert Xu
On Wed, Sep 15, 2010 at 02:12:03AM +0100, Ben Hutchings wrote: > Herbert, > > Does the warning below look like a symptom of the bug you fixed with > this commit? Yes it does look like. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ P

Bug#187808: procps: w reports pipelines incorrectly

2010-01-31 Thread Herbert Xu
nd processes. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject o

Bug#187808: closed by Craig Small (Fixed in 3.2.6)

2010-01-31 Thread Herbert Xu
ime, tload, free, vmstat, watch, skill, pmap, pgrep, slabtop and pwdx. $ Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE,

Bug#565404: linux-image-2.6.26-2-amd64: atl1e: TSO is broken

2010-01-23 Thread Herbert Xu
isit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#490644: gcc: -finline-small-functions is overzealous

2010-01-05 Thread Herbert Xu
> report upstream yourself? It appears to be fixed in gcc 4.4. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email

Bug#211784: closed by Guillem Jover (Re: Bug#211784: start-stop-daemon --stop returns before daemon exits unless --retry is used)

2009-11-24 Thread Herbert Xu
6 00:06:59 EST > 2003 i686 GNU/Linux > > Versions of the packages libc6 depends on: > ii libdb1-compat 2.1.3-7The Berkeley database routines [glibc 2.0/2. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#541835: [pkg-cryptsetup-devel] Bug#541835: crypto configuration / dependencies broken

2009-09-02 Thread Herbert Xu
least, they should all have aliases of the form "ALG" or "ALG-all". Things like chainiv/eseqiv should just be included always. There are unlikely to be any new algorithms of that type. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} H

Bug#429251: Debian Bug#429251: [PATCH] honor tab as IFS whitespace when splitting fields

2009-08-10 Thread Herbert Xu
l applicable as a separate patch. Anyway, this is what I ended up with: diff --git a/ChangeLog b/ChangeLog index e6a1d26..247b6e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-08-11 Stefan Potyra + + * Honor tab as IFS whitespace when splitting fields in readcmd. + 2009-06-2

Bug#478166: linux-image-2.6.24-1-686: airo hang when loading because of aes

2009-06-01 Thread Herbert Xu
mably cannot be hotplugged. I was going to remove this alias but found that it was already removed two years ago. Please revise your theory based on this new discovery :) -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herb

Bug#93268: closed by Antonio Radici (reply to anto...@dyne.org) (mutt: Bounced messages contain no From: headers)

2009-01-31 Thread Herbert Xu
- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscrib

Bug#455828: [EMAIL PROTECTED]: Bug#455828: dash: 4-argument test "test \( ! -e \)" yields an error]

2008-07-13 Thread Herbert Xu
On Sun, Jul 13, 2008 at 07:22:41PM +0800, Herbert Xu wrote: > > I've fixed as below. You'll also want these two patches. -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.a

Bug#490644: Acknowledgement (gcc: -finline-small-functions is overzealous)

2008-07-13 Thread Herbert Xu
On Sun, Jul 13, 2008 at 10:27:42AM +, Debian Bug Tracking System wrote: > > Thank you for filing a new Bug report with Debian. Here is the test file. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gond

Bug#487355: Bug forwarded upstream

2008-06-24 Thread Herbert Xu
be so important. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "

Bug#65458: closed by Clint Adams <[EMAIL PROTECTED]> (Re: Bug#65458: (no subject))

2008-05-19 Thread Herbert Xu
It has been closed by Clint Adams <[EMAIL PROTECTED]>. Until the fixed package enters Debian I can't verify this. So please keep it open. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://go

Bug#467065: dash bug with "if" in a pipe: patch included

2008-02-24 Thread Herbert Xu
xt() > (which I think applies only to pipes) as it handles "if" commands. > The attached patch fixes it for me. Good catch. Thanks Larry! I'll apply this patch. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> H

Bug#461507: angband: please make 3.0.6 scrolling behaviour optional

2008-01-19 Thread Herbert Xu
n is undesirable. So please keep this bug open until that is for future reference. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.tx

Bug#461507: angband: please make 3.0.6 scrolling behaviour optional

2008-01-19 Thread Herbert Xu
ltered by the update. If > the package does alter them, that is bad. Hmm as far as I can see there isn't an option for this behaviour at all. If there is I'd be grateful to know where it is. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} &

Bug#456990: dash: set +o does not conform to POSIX/SUSv3

2007-12-22 Thread Herbert Xu
ixed, Richard's patch looks good to > me. Patch applied. Thanks a lot. -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To

Bug#456399: [PATCH] [EVAL] Fix unaligned trap on sparc

2007-12-22 Thread Herbert Xu
to cast. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- commit 745e09faa22eb06e00588b198210b302c860a988 Author: Steve Langase

Bug#456398: [PATCH] [ARITH] If imaxdiv() isn't available, use / and % operators

2007-12-20 Thread Herbert Xu
ned-off-by: Gerrit Pape <[EMAIL PROTECTED]> Thanks a lot Gerrit. I'll add it to the tree. -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herber

Bug#456398: [PATCH] [ARITH] Don't use imaxdiv(), but /, % operators

2007-12-20 Thread Herbert Xu
because it generated better code with the current gcc so I'd like to keep it where it's available. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apa

Bug#40207: ntp: ntpd refuses to step the clock

2007-12-10 Thread Herbert Xu
On Tue, Dec 11, 2007 at 12:37:17AM +0100, Peter Eisentraut wrote: > Can anyone still reproduce this with a recent set of software? No the machine in question died long ago. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Hom

Bug#431320: NAK: Arithmetic argument NULL must be handled as Not A Number

2007-10-16 Thread Herbert Xu
) How many broken and slow things its developer > brought to the world... This must be left behind and remembered as > classic case of "what not to do". Right, I didn't realise that your patch actually treated this case consistently. I've applied your patch (modified for the cu

Bug#431320: Re, NAK: Arithmetic argument NULL must be handled as Not A Number

2007-10-16 Thread Herbert Xu
]' bash: line 0: [: : integer expression expected $ bash -o posix -c '[ " " -lt 3 ]' $ Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.

Bug#445651: posh: Conditional operator evaluates both arguments

2007-10-12 Thread Herbert Xu
On Fri, Oct 12, 2007 at 10:45:14AM -0400, Clint Adams wrote: > On Mon, Oct 08, 2007 at 08:35:42AM +0800, Herbert Xu wrote: > > Yes. > > Based on the contents of tests/arith.t, I'm wondering if this is somehow > intentional. I've tested every other shell and they al

Bug#329025: Please consider implementing SuSv3 compliant $(()) arithmetics

2007-10-11 Thread Herbert Xu
e with assignment support. Please let me know if there are any problems with it. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -

Bug#418774: dash gives "Syntax error: Bad substitution" on valid syntax

2007-10-08 Thread Herbert Xu
T be an error, because that reference > is never expanded. Fair enough. I've fixed it as follows. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/

Bug#445651: posh: Conditional operator evaluates both arguments

2007-10-07 Thread Herbert Xu
On Sun, Oct 07, 2007 at 12:32:08PM -0400, Clint Adams wrote: > > > Putting brackets around x = 3 seems to fix it so this could be > > a parse error. > > Parentheses, I assume. Yes. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[

Bug#185584: xserver-xfree86: X server should retry xfs connection

2007-10-07 Thread Herbert Xu
nswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#23233: Debian CVS bugs

2007-10-05 Thread Herbert Xu
These CVS bugs are still outstanding and should remain open. -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE,

Bug#445210: closed by Pierre Habouzit <[EMAIL PROTECTED]> (Re: Bug#445210: libc6: glob(3) doesn't treat \ correctly)

2007-10-04 Thread Herbert Xu
ort. $ cat a.c #include #include int main() { glob_t pglob; printf("%d\n", glob("\\/*", 0, 0, &pglob)); printf("%d\n", glob("/*", 0, 0, &pglob)); return 0; } $ make a cc a.c -o a $ ./a 3 0 $ Cheers, -- Visit

Bug#65458: closed by Touko Korpela <[EMAIL PROTECTED]> (Should be fixed now)

2007-09-26 Thread Herbert Xu
my machine is now much faster :) Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED]

Bug#431320: [EMAIL PROTECTED]: Bug#431320: dash, test: Arithmetic argument NULL must be handled as Not A Number]

2007-09-22 Thread Herbert Xu
so I've dropped it. > Subject: [patch 03/03] dash, test: recognize NULL argument as not a number Nack because 1) The real Korn shell does the same thing; 2) It makes the code bigger :) Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTE

Bug#431320: More questions about test built-in (Bug#431320: dash, test: [...])

2007-09-21 Thread Herbert Xu
ecute then this should be fine. > In case if it is not exising in Hurd or BSD, then access() can be > used, because `dash` is not SUID anyway. Actually access(2) doesn't do the right thing but it should be easy enough to use the existing code if euidaccess doesn't exist. Cheers, -

Bug#429251: [PATCH] honor tab as IFS whitespace when splitting fields

2007-09-19 Thread Herbert Xu
it'd be nice if we could share code with it. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to [EMAIL

Bug#431320: [EMAIL PROTECTED]: Bug#431320: dash, test: Arithmetic argument NULL must be handled as Not A Number]

2007-09-19 Thread Herbert Xu
errit. I'll merge this soon. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To UNSUBSCRIBE, email to [EMAIL PR

Bug#334182: dash POSIX issues [Gentoo Bug #171630]

2007-05-20 Thread Herbert Xu
ect your opinion but I have not been convinced that your interpretation is the only correct one. If you guys really care about this, please bring it to the attention of the Austin group so that it can be clarified. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV&

Bug#334182: dash POSIX issues [Gentoo Bug #171630]

2007-05-20 Thread Herbert Xu
side bash then it works on the command line too: bash -c 'K=dvb0.net0 A=${K#dvb} env | grep ^A=' Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.

  1   2   >