=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/netstart,v retrieving revision 1.125 retrieving revision 1.126 diff -c -r1.125 -r1.126 *** src/etc/netstart 2009/07/10 19:08:08 1.125 --- src/etc/netstart 2009/09/17 08:22:22 1.126 *************** *** 1,6 **** #!/bin/sh - # ! # $OpenBSD: netstart,v 1.125 2009/07/10 19:08:08 jdixon Exp $ # Strip comments (and leading/trailing whitespace if IFS is set) # from a file and spew to stdout --- 1,6 ---- #!/bin/sh - # ! # $OpenBSD: netstart,v 1.126 2009/09/17 08:22:22 simon Exp $ # Strip comments (and leading/trailing whitespace if IFS is set) # from a file and spew to stdout *************** *** 66,72 **** # Make sure and get any remaining args in ext2, # like the read below i=1 ! while [ i -lt 6 -a -n "$1" ]; do shift; let i=i+1; done ext2="$@" else # Read the next line or exit the while loop. --- 66,72 ---- # Make sure and get any remaining args in ext2, # like the read below i=1 ! while [ $i -lt 6 -a -n "$1" ]; do shift; let i=i+1; done ext2="$@" else # Read the next line or exit the while loop.