[BusyBox] awk problem with freeswan

Philip Blundell pb at nexus.co.uk
Sat Jul 3 15:47:59 UTC 2004


Busybox awk doesn't seem to like freeswan's setup scripts.  I've
isolated one problem to this testcase.  It seems that busybox gets upset
by the "break", though both gawk and mawk are happy with it.

$ cat t.awk
BEGIN {
for (i = 1; i <= NF; i++) {
                if (0) {
                        break
                }
        }
}
$ ./busybox awk -f t.awk
awk: t.awk:5: Unexpected token
$ mawk -f t.awk
$ gawk -f t.awk
$

p.




More information about the busybox mailing list