oweals/busybox.git
20 years agoFix tar -j support
Glenn L McGrath [Wed, 5 Nov 2003 04:55:58 +0000 (04:55 -0000)]
Fix tar -j support
Use the old fork() method of tar compression support, rather than
read_bz2....
 - (*uncompress)(int in, int out) seems like a more natural interface
for compression code.
 - it might improve performance by seperating the work into one cpu
bound and one io bound process.
 - There is extra code required to do read_[gz|bunzip] since (*uncompress)(int in,
int out) will normally be used by the standalone compression applet.

There have been problems with this method so if you see a "Short read"
error let me know.

20 years agoFix oversight with CONFIG_FEATURE_AUTOWIDTH handling
Eric Andersen [Tue, 4 Nov 2003 23:16:48 +0000 (23:16 -0000)]
Fix oversight with CONFIG_FEATURE_AUTOWIDTH handling

20 years agoSet unset_env pointing to a NULL item, to prevent us from walking
Eric Andersen [Mon, 3 Nov 2003 22:46:14 +0000 (22:46 -0000)]
Set unset_env pointing to a NULL item, to prevent us from walking
off the end of the list and segfaulting.
 -Erik

20 years agoFix rdate and ftpget/ftpput so they compile with the new xconnect.
Eric Andersen [Mon, 3 Nov 2003 21:20:18 +0000 (21:20 -0000)]
Fix rdate and ftpget/ftpput so they compile with the new xconnect.
I have checked rdate.  Someone should also check ftpget/ftpput to
be sure they still work.

20 years agoAvoid conflicts with the 2.6 kernel headers, which define
Eric Andersen [Mon, 3 Nov 2003 08:59:51 +0000 (08:59 -0000)]
Avoid conflicts with the 2.6 kernel headers, which define
_IOR rather differently, thereby breaking the BLKGETSIZE64
ioctl.
 -Erik

20 years agoRework wget, the xconnect interface, and its various clients
Eric Andersen [Fri, 31 Oct 2003 09:31:46 +0000 (09:31 -0000)]
Rework wget, the xconnect interface, and its various clients
in order to fix the problems with round robin DNS reported
by Andrew Flegg:
    http://busybox.net/lists/busybox/2003-October/009579.html

This removes the ipv6 specific xconnect dns lookups.  I do
not see why that would need to be special cased for ipv6 as
was done, but that will just have to be tested.

So IPV6 people -- please test this change!

 -Erik

20 years agoPut back the tar support stubs (and warnings) for now.
Eric Andersen [Fri, 31 Oct 2003 08:52:57 +0000 (08:52 -0000)]
Put back the tar support stubs (and warnings) for now.

20 years agoTry to make indent formatting less horrible
Eric Andersen [Fri, 31 Oct 2003 08:19:44 +0000 (08:19 -0000)]
Try to make indent formatting less horrible

20 years agoPatch from David Meggy to make the swap default to the new version if no
Glenn L McGrath [Fri, 31 Oct 2003 02:04:18 +0000 (02:04 -0000)]
Patch from David Meggy to make the swap default to the new version if no
version is specified and the kernel is relatively new.

20 years agoMove the tail -c option from FANCY_TAIL to the default tail, this makes
Glenn L McGrath [Fri, 31 Oct 2003 00:35:59 +0000 (00:35 -0000)]
Move the tail -c option from FANCY_TAIL to the default tail, this makes
the default tail options conform to SUSv3, with the non-SUS
option all in FANCY_TAIL

20 years agoFix stupid typo
Eric Andersen [Fri, 31 Oct 2003 00:21:28 +0000 (00:21 -0000)]
Fix stupid typo

20 years agoRemove config options for sort -u and sort -r, they are always enabled
Glenn L McGrath [Fri, 31 Oct 2003 00:04:24 +0000 (00:04 -0000)]
Remove config options for sort -u and sort -r, they are always enabled

20 years agoAdd a comment with link to the SUSv3 standard for xargs
Glenn L McGrath [Thu, 30 Oct 2003 22:51:33 +0000 (22:51 -0000)]
Add a comment with link to the SUSv3 standard for xargs

20 years agorun through indent
Glenn L McGrath [Thu, 30 Oct 2003 22:47:16 +0000 (22:47 -0000)]
run through indent

20 years agoPatch from Dmitry Zakharov,
Glenn L McGrath [Thu, 30 Oct 2003 13:36:39 +0000 (13:36 -0000)]
Patch from Dmitry Zakharov,
Fixes two bugs:
- END block didn't execute after an exit() call
- huge memory consumption and performance degradation on large input
(now performance is comparable to gawk)

20 years agomake certain values specified in the environment always win
Eric Andersen [Thu, 30 Oct 2003 07:48:38 +0000 (07:48 -0000)]
make certain values specified in the environment always win

20 years agoAccept the -c option and do nothing
Glenn L McGrath [Wed, 29 Oct 2003 11:10:02 +0000 (11:10 -0000)]
Accept the -c option and do nothing

20 years agofix a bug where `which' doesn't check whether the file passed as an argument
Glenn L McGrath [Wed, 29 Oct 2003 04:50:35 +0000 (04:50 -0000)]
fix a bug where `which' doesn't check whether the file passed as an argument
is a regular file, patch by Arthur Othieno

20 years agomake CONFIG_FEATURE_UNARCHIVE_TAPE common between itar and cpio, patch
Glenn L McGrath [Wed, 29 Oct 2003 04:46:30 +0000 (04:46 -0000)]
make CONFIG_FEATURE_UNARCHIVE_TAPE common between itar and cpio, patch
by Arthur Othieno

20 years ago"A few references to sourcefiles and URLs in docs/contributing.txt had
Glenn L McGrath [Wed, 29 Oct 2003 03:40:47 +0000 (03:40 -0000)]
"A few references to sourcefiles and URLs in docs/contributing.txt had
gone stale" - Peter Korsgaard

20 years agoUse the return value from uncompress_bunzip, fix some typo
Glenn L McGrath [Wed, 29 Oct 2003 03:37:54 +0000 (03:37 -0000)]
Use the return value from uncompress_bunzip, fix some typo

20 years agoAdd some error messages, use xmalloc instead of malloc
Glenn L McGrath [Tue, 28 Oct 2003 23:32:12 +0000 (23:32 -0000)]
Add some error messages, use xmalloc instead of malloc

20 years agoFix a logic error, the old bunzip code returned non-zero for success,
Glenn L McGrath [Tue, 28 Oct 2003 23:04:50 +0000 (23:04 -0000)]
Fix a logic error, the old bunzip code returned non-zero for success,
new code returns 0 for success.

20 years agoConditionally compile some files.
Glenn L McGrath [Tue, 28 Oct 2003 10:44:58 +0000 (10:44 -0000)]
Conditionally compile some files.
This hides a bug related to the new bunzip code in the tar and dpkg[-deb]
applets.
It will also reduce compile time a little as some unused files wont be
compiled.

20 years agoAnother bzip2 update and speedup from Manuel Novoa III, with some
Eric Andersen [Thu, 23 Oct 2003 06:52:01 +0000 (06:52 -0000)]
Another bzip2 update and speedup from Manuel Novoa III, with some
additional changes (primarily lots of comments) from Rob Landley.

20 years agothe dc applet now needs libm
Eric Andersen [Wed, 22 Oct 2003 22:29:08 +0000 (22:29 -0000)]
the dc applet now needs libm
 -Erik

20 years agosigh
Eric Andersen [Wed, 22 Oct 2003 11:36:55 +0000 (11:36 -0000)]
sigh

20 years agoGoetz Bock writes:
Eric Andersen [Wed, 22 Oct 2003 11:24:39 +0000 (11:24 -0000)]
Goetz Bock writes:

Dear list,

during my quest do pack busybox into an RPM, I've fixed a small bug
(missing \n) in dc's usage. And added two additional operations: mod and
exp/power.

Feel free to drop them.

20 years agolast_patch116 from vodz:
Eric Andersen [Wed, 22 Oct 2003 10:56:47 +0000 (10:56 -0000)]
last_patch116 from vodz:

Stephane,

>Using busybox+uclibc, crond syslog messages look like:
>
>Oct  9 09:04:46 soekris cron.notice crond[347]: ^Icrond 2.3.2 dillon,
>started, log level 8

Thanks for testing.

>The attached patch corrects the problem.

Your patch is not correct.
Correct patch attached.

Also. Last patch have
- add "Broken pipe" message to ash.c
- busybox ash synced with dash_0.4.18

--w
vodz

20 years agoTomasz Motylewski reported that the 'which' applet does not find
Eric Andersen [Wed, 22 Oct 2003 10:38:22 +0000 (10:38 -0000)]
Tomasz Motylewski reported that the 'which' applet does not find
files when the full file PATH is specified.

This patch from Arthur Othieno fixes it.

20 years agoPatch from Arthur Othieno for style-guide.txt conformance
Eric Andersen [Wed, 22 Oct 2003 10:34:15 +0000 (10:34 -0000)]
Patch from Arthur Othieno for style-guide.txt conformance

20 years agoPatch from Arthur Othieno for docs/style-guide.txt conformance.
Eric Andersen [Wed, 22 Oct 2003 10:30:53 +0000 (10:30 -0000)]
Patch from Arthur Othieno for docs/style-guide.txt conformance.

20 years agoPatch from Arthur Othieno to fix a compiler warning
Eric Andersen [Wed, 22 Oct 2003 10:26:38 +0000 (10:26 -0000)]
Patch from Arthur Othieno to fix a compiler warning

20 years agomake this a little bit less messy
Eric Andersen [Wed, 22 Oct 2003 10:23:04 +0000 (10:23 -0000)]
make this a little bit less messy

20 years agoUpdate mail location
Eric Andersen [Wed, 22 Oct 2003 10:19:01 +0000 (10:19 -0000)]
Update mail location

20 years agoDisable any buffering to stdout
Eric Andersen [Wed, 22 Oct 2003 10:18:24 +0000 (10:18 -0000)]
Disable any buffering to stdout

20 years agoTito writes:
Eric Andersen [Wed, 22 Oct 2003 10:10:50 +0000 (10:10 -0000)]
Tito writes:

Hi to all,
I'm sorry but  I didn't spot this big fat bug until now,
Matteo Croce emailed me about it.
Please apply this patch as the devfsd applet is broken
and works only on a system booted with a standard devfsd
( the test I mostly did :-(   ), but if used at boot time
it DOESN'T WORK.

Thanks in advance and please apply
Tito

20 years agoAndreas Mohr writes:
Eric Andersen [Wed, 22 Oct 2003 09:58:56 +0000 (09:58 -0000)]
Andreas Mohr writes:

the busybox menuconfig triggered my "inacceptable number of spelling mistakes"
upper level, so I decided to make a patch ;-)

I also improved some wording to describe some things in a better way.

Many thanks for an incredible piece of software!

Andreas Mohr, random OSS developer

20 years agoDo a better job of dealing with screwy s390 abi changes
Eric Andersen [Tue, 21 Oct 2003 06:45:29 +0000 (06:45 -0000)]
Do a better job of dealing with screwy s390 abi changes

20 years agoccording to this:
Eric Andersen [Mon, 20 Oct 2003 05:40:40 +0000 (05:40 -0000)]
ccording to this:
    http://sources.redhat.com/ml/binutils/2003-01/msg00290.html
The name R_390_GOTOFF was changed to R_390_GOTOFF32.
 -Erik

20 years agoManuel Novoa III writes:
Eric Andersen [Sat, 18 Oct 2003 01:59:46 +0000 (01:59 -0000)]
Manuel Novoa III writes:

Hello Rob,

Here's a patch to your bunzip-3.c file.  Nice work btw.

One minor bug fix... checking for error return when read()ing.
Some size/performance optimizations as well.  One instance of
memset() seems unnecssary.  You might want to take a look.

Anyway, on my machine, decompressing linux-2.6.0-test7.tar.bz2
to /dev/null gave the following times:

        bunzip-3.c    bzcat (system)   bunzip-3.c (patched)
real    0m24.420s     0m22.725s        0m20.701s
user    0m23.930s     0m22.170s        0m20.180s
sys     0m0.070s      0m0.080s         0m0.140s

Size of the patched version is comparable (slightly larger or
smaller depending on compiler flags).

Manuel

20 years agoRob Landley's new micro-bunzip version 3. Rob writes:
Eric Andersen [Sat, 18 Oct 2003 01:58:35 +0000 (01:58 -0000)]
Rob Landley's new micro-bunzip version 3.  Rob writes:

The API for using partial writes, as described in my last message, sucked.

So here's a patch against my last patch that changes things so that
write_bunzip_data calls read_bunzip_data itself behind the scenes whenever
necessary.  So usage is now just start_bunzip(), write_bunzip_data() until it
returns a negative number, and then the cleanup at the end of
uncompressStream.

It adds 32 bytes to the executable, but it should allow the caller (tar) to be
simplified enough to compensate.  Total -Os stripped exe size now 6856 bytes.

Rob

P.S.  I attached the whole C file so you don't have to keep incremental
patches straight if you don't want to. :)

P.S.  In the version I'm banging on now, I've simplified the license to just
LGPL.  I read the OSL a bit more closely and the patent termination clause
would have bit IBM in their counter-suit of SCO if the code in question had
been OSL instead of GPL, and I've decided I just don't want to beta-test
legal code right now.

20 years agoold gcc
Tim Riker [Fri, 17 Oct 2003 18:54:55 +0000 (18:54 -0000)]
old gcc

20 years agoPaul Mundt (lethal) writes:
Eric Andersen [Sat, 11 Oct 2003 18:47:20 +0000 (18:47 -0000)]
Paul Mundt (lethal) writes:

Erik,

The format for /proc/meminfo has changed between 2.4 and 2.6, quite considerably.
In addition to the removal of the two-line summary that was present in 2.4,
MemShared was also removed. Presently (at least in busybox CVS HEAD), top fails
to parse this correctly and spews forth a:

top: failed to read 'meminfo'

message. This patch switches around some of the semantics a little to do sane
parsing for both 2.4 and 2.6. Also, in the event that the summary gets yanked
from 2.4, this patch will deal with that as well. With this patch, I'm able
to run top correctly on 2.6.0-test7 (tested on sh).

Please apply.

 procps/top.c |   60 +++++++++++++++++++++++++++++++++++++++++++++++------------
  1 files changed, 48 insertions(+), 12 deletions(-)

20 years agoVodz last_patch_117, update options for new xargs
Glenn L McGrath [Fri, 10 Oct 2003 23:15:23 +0000 (23:15 -0000)]
Vodz last_patch_117, update options for new xargs

20 years agoVods versions of xargs
Glenn L McGrath [Fri, 10 Oct 2003 12:10:18 +0000 (12:10 -0000)]
Vods versions of xargs

20 years agoI don't need to have my email adder listed twice
Eric Andersen [Thu, 9 Oct 2003 21:19:21 +0000 (21:19 -0000)]
I don't need to have my email adder listed twice

20 years agoDo not use kernel headers
Eric Andersen [Thu, 9 Oct 2003 21:02:23 +0000 (21:02 -0000)]
Do not use kernel headers

20 years agoFix an ommision preventing building, patch by Tito.
Glenn L McGrath [Thu, 9 Oct 2003 13:40:17 +0000 (13:40 -0000)]
Fix an ommision preventing building, patch by Tito.

20 years agoexample devfs config file, patch from Tito.
Glenn L McGrath [Thu, 9 Oct 2003 13:25:00 +0000 (13:25 -0000)]
example devfs config file, patch from Tito.

20 years agoNew applet, devfsd, by Matteo Croce and Tito
Glenn L McGrath [Thu, 9 Oct 2003 11:46:23 +0000 (11:46 -0000)]
New applet, devfsd, by Matteo Croce and Tito

20 years agoPatch from Steven Scholz, fix some warnings
Glenn L McGrath [Thu, 9 Oct 2003 11:38:45 +0000 (11:38 -0000)]
Patch from Steven Scholz, fix some warnings

20 years agoBugfix for xargs
Glenn L McGrath [Thu, 9 Oct 2003 11:06:45 +0000 (11:06 -0000)]
Bugfix for xargs

20 years agoArnd Ben Otto writes:
Eric Andersen [Thu, 9 Oct 2003 09:43:18 +0000 (09:43 -0000)]
Arnd Ben Otto writes:

Hi Eric

I have written a small patch for the Busybox syslogd. With this patch
one can limit the size of the messagfile. As soon as the limit is
reached the syslogd can rotate or purge the messagefile(s) on his own.
There is no necessity to use an external rotatescript.

Even if logread does something similar, its very handy to have some
messagefile after your box crash.

I wrote this patch initial vor BB 0.6x where no cron daemon was avail.
Now I adapted it for the new Version and i hope it is still useful. At
least I still use it :-)

bye
Arnd

20 years agoWe did not have a safe_write, which is the analog to safe_read. Convert
Eric Andersen [Thu, 9 Oct 2003 08:35:42 +0000 (08:35 -0000)]
We did not have a safe_write, which is the analog to safe_read.  Convert
full_write to use safe_write internally, which is needed to guarantee proper
behavior, i.e. when writing to a pipe.

20 years agoFix some warnings that have crept in recently
Eric Andersen [Thu, 9 Oct 2003 08:18:36 +0000 (08:18 -0000)]
Fix some warnings that have crept in recently

20 years agoPatch from Tito, size optimisation and fix error in exit code of -V
Glenn L McGrath [Thu, 9 Oct 2003 07:28:22 +0000 (07:28 -0000)]
Patch from Tito, size optimisation and fix error in exit code of -V
option

20 years agoComaptability with gcc-2.95
Glenn L McGrath [Thu, 9 Oct 2003 07:22:59 +0000 (07:22 -0000)]
Comaptability with gcc-2.95

20 years agoVodz last_patch_105 without his xargs patch which doenst apply cleanly
Glenn L McGrath [Mon, 6 Oct 2003 13:23:06 +0000 (13:23 -0000)]
Vodz last_patch_105 without his xargs patch which doenst apply cleanly

20 years agoAdd the x, n, s and E options, remove -r as its expected behaviour.
Glenn L McGrath [Sat, 4 Oct 2003 14:44:27 +0000 (14:44 -0000)]
Add the x, n, s and E options, remove -r as its expected behaviour.

20 years agoPatch from Rob Landley;
Glenn L McGrath [Sat, 4 Oct 2003 05:27:56 +0000 (05:27 -0000)]
Patch from Rob Landley;
Moving on to building diffutils, busybox sed needs this patch to get
past the first problem.  (Passing it a multi-line command line argument
with -e works, but if you don't use -e it doesn't break up the multiple
lines...)

20 years agoWoops, the previous patch reversal wasnt complete, breaking everything.
Glenn L McGrath [Sat, 4 Oct 2003 00:05:47 +0000 (00:05 -0000)]
Woops, the previous patch reversal wasnt complete, breaking everything.

20 years agoReverse my previous changes and make a note about why its dont this way
Glenn L McGrath [Fri, 3 Oct 2003 13:21:10 +0000 (13:21 -0000)]
Reverse my previous changes and make a note about why its dont this way

20 years agoDont mix xarg options with utility option, fixes example of
Glenn L McGrath [Fri, 3 Oct 2003 13:15:44 +0000 (13:15 -0000)]
Dont mix xarg options with utility option, fixes example of
`echo "README" | xargs ls -al`
Dont specify a path for the default behaviour of echo
args allocated space for an extra ptr
Use defines for the different options

20 years agoVodz, last_patch_114
Glenn L McGrath [Fri, 3 Oct 2003 10:50:56 +0000 (10:50 -0000)]
Vodz, last_patch_114
- env vars CONTENT_TYPE, CONTENT_LENGTH, HTTPD_REFERER, REMOTE_USER and
AUTH_TYPE(Basic always).
- POST data pipied now (previous version have loading into memory may be
big size data and reducing with hardcoded limit)
- removed $CGI_foo environment variables, else my have rubbish
enviroment if POST data have big binary file

20 years agoPatch by Rob Landley, fix warning
Glenn L McGrath [Fri, 3 Oct 2003 08:28:59 +0000 (08:28 -0000)]
Patch by Rob Landley, fix warning

20 years agoargc has already been decremented
Glenn L McGrath [Fri, 3 Oct 2003 07:51:30 +0000 (07:51 -0000)]
argc has already been decremented

20 years agoPatch from Rob Landley, Simplify organisation of arguments.
Glenn L McGrath [Fri, 3 Oct 2003 03:25:30 +0000 (03:25 -0000)]
Patch from Rob Landley, Simplify organisation of arguments.

20 years agoFix -C option when creating tar files.
Glenn L McGrath [Thu, 2 Oct 2003 14:33:23 +0000 (14:33 -0000)]
Fix -C option when creating tar files.
Need to chdir after the tar file is opened, so make common tar filename
parsing and send the file descriptor rather than filename to
writeTarFile.
Modify the verboseFlag operation to determine wether to display on
stderr or stdout at display time, simpler than doing it in tar_main.

20 years agoThomas Lundquist, update for current structure
Glenn L McGrath [Wed, 1 Oct 2003 11:33:46 +0000 (11:33 -0000)]
Thomas Lundquist, update for current structure

20 years agoPatch from Rob Landley to fix backrefs
Glenn L McGrath [Wed, 1 Oct 2003 10:26:23 +0000 (10:26 -0000)]
Patch from Rob Landley to fix backrefs

20 years agoPatch by Rob Landley, fix "newline after edit command"
Glenn L McGrath [Wed, 1 Oct 2003 06:45:11 +0000 (06:45 -0000)]
Patch by Rob Landley, fix "newline after edit command"

20 years agoPatch by Rob Landley, work in progress update, fixes lots of bugs,
Glenn L McGrath [Wed, 1 Oct 2003 03:06:16 +0000 (03:06 -0000)]
Patch by Rob Landley, work in progress update, fixes lots of bugs,
introduces a few others (but they are being worked on)

20 years agoPatch by Guillaume Morin
Glenn L McGrath [Fri, 26 Sep 2003 10:45:55 +0000 (10:45 -0000)]
Patch by Guillaume Morin
Fix two race conditions, as described at.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=212764

20 years agoPatch from Fillod Stephane
Glenn L McGrath [Fri, 26 Sep 2003 01:03:16 +0000 (01:03 -0000)]
Patch from Fillod Stephane
Add follow mode to logread, ala "tail -f /var/log/messages"
Note: output to a slow serial terminal can have side effects
on syslog because of the semaphore. In such case, define
RC_LOGREAD.

20 years agoadd size parameter to syslogd -C
Glenn L McGrath [Fri, 26 Sep 2003 00:49:05 +0000 (00:49 -0000)]
add size parameter to syslogd -C
Patch by Padraig, resubmitted by Fillod Stephane

20 years agoPatch by Fillod Stephane, declare variables as static to not clobber
Glenn L McGrath [Fri, 26 Sep 2003 00:33:18 +0000 (00:33 -0000)]
Patch by Fillod Stephane, declare variables as static to not clobber
busybox namespace

20 years agoUse a variable for the config files, makes it easier to syncronise with
Glenn L McGrath [Wed, 24 Sep 2003 15:48:29 +0000 (15:48 -0000)]
Use a variable for the config files, makes it easier to syncronise with
debian builds

20 years agoSyncronise with debian busybox-cvs package
Glenn L McGrath [Wed, 24 Sep 2003 15:30:44 +0000 (15:30 -0000)]
Syncronise with debian busybox-cvs package

20 years agoFix some typo's, remove some extra free statements
Glenn L McGrath [Wed, 24 Sep 2003 10:23:39 +0000 (10:23 -0000)]
Fix some typo's, remove some extra free statements

20 years agoAdd the -d option
Glenn L McGrath [Wed, 24 Sep 2003 05:00:29 +0000 (05:00 -0000)]
Add the -d option

20 years agoAdd the "install" applet, move get_ug_id to libbb as its used by chown,
Glenn L McGrath [Wed, 24 Sep 2003 03:22:57 +0000 (03:22 -0000)]
Add the "install" applet, move get_ug_id to libbb as its used by chown,
chgrp and install.

20 years agoPatch by Steinar H. Gunderson to fix debian bug #211675.
Glenn L McGrath [Sat, 20 Sep 2003 00:59:35 +0000 (00:59 -0000)]
Patch by Steinar H. Gunderson to fix debian bug #211675.
Linking to my_getgrnam from libpwdgrp wasnt working, instead it was
trying to use functionality from glibc, which pulled in libnss.

20 years agoPatch by Junio C Hamano to workaround a gcc compiler bug.
Glenn L McGrath [Wed, 17 Sep 2003 00:22:26 +0000 (00:22 -0000)]
Patch by Junio C Hamano to workaround a gcc compiler bug.

The construct certain vintages of GCC (the one I have trouble
with is 3.2.3) have trouble with looks like the following:

    static struct st a;
    static struct st *p = &a;
    struct st { int foo; };
    static void init(void) { a.foo = 0; }

The problem disappears if we move the struct declaration up to
let the compiler know the shape of the struct before the first
definition uses it, like this:

    struct st { int foo; }; /* this has been moved up */
    static struct st a;
    static struct st *p = &a;
    static void init(void) { a.foo = 0; }

20 years agoConfiguration option to define wether to follows GNU sed's behaviour
Glenn L McGrath [Tue, 16 Sep 2003 05:25:43 +0000 (05:25 -0000)]
Configuration option to define wether to follows GNU sed's behaviour
or the posix standard.
Put the cleanup code back the way it was.

20 years agoFix a bug that creapt in recently with substitution subprinting, and add
Glenn L McGrath [Tue, 16 Sep 2003 01:46:36 +0000 (01:46 -0000)]
Fix a bug that creapt in recently with substitution subprinting, and add
a test for it.

20 years agoCompile get_terminal_width_height
Glenn L McGrath [Tue, 16 Sep 2003 00:50:36 +0000 (00:50 -0000)]
Compile get_terminal_width_height

20 years agoPatch from Stephane Billiart to fix an unused variable warning.
Glenn L McGrath [Mon, 15 Sep 2003 15:00:43 +0000 (15:00 -0000)]
Patch from Stephane Billiart to fix an unused variable warning.

20 years agoPatch from Bastian Blank to fix a problem when runing find under ash.
Glenn L McGrath [Mon, 15 Sep 2003 14:42:39 +0000 (14:42 -0000)]
Patch from Bastian Blank to fix a problem when runing find under ash.

"If the shell is compiled with -DJOBS, this is all fine -- find wasn't
stopped (it was killed), so it correctly uses WTERMSIG instead of WSTOPSIG.
However, if the shell _isn't_ compiled with -DJOBS (which it isn't in d-i),
only WSTOPSIG is used, which extracts the high byte instead of the low
byte from the status code.  Since the status code is 13 (SIGPIPE), "st"
suddenly gets the value 0, which is equivalent to SIGEXIT. Thus, ash prints
out "EXIT" on find's exit."

20 years agoPatch from Tito, Reduces the size of busybox's strings applet from 1900 to
Glenn L McGrath [Mon, 15 Sep 2003 14:22:37 +0000 (14:22 -0000)]
Patch from Tito, Reduces the size of busybox's strings applet from 1900 to
1788 bytes (for strings.o).

20 years agoFix a simple mistake with pattern space, and add a test for it
Glenn L McGrath [Mon, 15 Sep 2003 12:07:48 +0000 (12:07 -0000)]
Fix a simple mistake with pattern space, and add a test for it

20 years agoPatch by Jean Wolter to fix a bug where a script wouldnt be executed
Glenn L McGrath [Mon, 15 Sep 2003 12:00:19 +0000 (12:00 -0000)]
Patch by Jean Wolter to fix a bug where a script wouldnt be executed
unless it had #!/bin/sh in the first line

"It correctly locates the script, tries to execute it via execve which
fails. After that it tries to hand it over to /bin/sh which fails too,
since ash

    - neither provides the absolute pathname to /bin/sh
    - nor tries to lookup the script via PATH if called as "sh script"
"

20 years agoFix some memory allocation problems
Glenn L McGrath [Mon, 15 Sep 2003 09:22:04 +0000 (09:22 -0000)]
Fix some memory allocation problems
----------------------------------------------------------------------

20 years agoBe entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)
Eric Andersen [Mon, 15 Sep 2003 08:33:45 +0000 (08:33 -0000)]
Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)
to ensure proper fallback behavior on, i.e. serial consoles.
 -Erik

20 years agofix function prototype
Eric Andersen [Mon, 15 Sep 2003 08:13:43 +0000 (08:13 -0000)]
fix function prototype

20 years agoNeeds prototype for close()
Eric Andersen [Mon, 15 Sep 2003 08:12:53 +0000 (08:12 -0000)]
Needs prototype for close()

20 years agocomparison was always false due to limited range of data types.
Eric Andersen [Mon, 15 Sep 2003 08:11:29 +0000 (08:11 -0000)]
comparison was always false due to limited range of data types.
Carefully cast to unsigned long long prior to multiply to get
the expected result.

20 years agoDo not shadow the global name 'accept'
Eric Andersen [Mon, 15 Sep 2003 08:06:15 +0000 (08:06 -0000)]
Do not shadow the global name 'accept'

20 years agoAdd a test for the 'P' command and fix current implementation so it
Glenn L McGrath [Mon, 15 Sep 2003 06:28:45 +0000 (06:28 -0000)]
Add a test for the 'P' command and fix current implementation so it
doesnt permanently modify the pattern space.

20 years agoA test and fix for the sed 'n' command
Glenn L McGrath [Mon, 15 Sep 2003 06:12:53 +0000 (06:12 -0000)]
A test and fix for the sed 'n' command