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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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]:
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
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
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
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
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
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
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
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
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
;
> 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
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
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
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
;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
; 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
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
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
> 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
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
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
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
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
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
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
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
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
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
.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
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
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 &
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.
=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
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
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
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
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
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
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
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
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
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
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
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
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
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
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,
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
> 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
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
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
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
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
-
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
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
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
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 "
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
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
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
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~} &
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
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
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
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
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
) 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
]'
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.
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
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
-
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/
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~} <[
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]
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,
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
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]
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
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,
-
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
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
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&
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 - 100 of 149 matches
Mail list logo