=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.452 retrieving revision 1.453 diff -c -r1.452 -r1.453 *** src/etc/rc 2015/07/18 21:12:40 1.452 --- src/etc/rc 2015/07/19 04:44:36 1.453 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.452 2015/07/18 21:12:40 rpe Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the --- 1,4 ---- ! # $OpenBSD: rc,v 1.453 2015/07/19 04:44:36 rpe Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the *************** *** 16,22 **** { while read _line ; do _line=${_line%%#*} # strip comments ! test -z "$_line" && continue echo $_line done } <$_file --- 16,22 ---- { while read _line ; do _line=${_line%%#*} # strip comments ! [ -z "$_line" ] && continue echo $_line done } <$_file *************** *** 53,59 **** # Apply sysctl(8) settings. sysctl_conf() { ! test -s /etc/sysctl.conf || return # delete comments and blank lines set -- `stripcom /etc/sysctl.conf` --- 53,59 ---- # Apply sysctl(8) settings. sysctl_conf() { ! [ -s /etc/sysctl.conf ] || return # delete comments and blank lines set -- `stripcom /etc/sysctl.conf` *************** *** 74,80 **** # Apply mixerctl(1) settings. mixerctl_conf() { ! test -s /etc/mixerctl.conf || return # delete comments and blank lines set -- `stripcom /etc/mixerctl.conf` --- 74,80 ---- # Apply mixerctl(1) settings. mixerctl_conf() { ! [ -s /etc/mixerctl.conf ] || return # delete comments and blank lines set -- `stripcom /etc/mixerctl.conf` *************** *** 88,94 **** wsconsctl_conf() { local save_IFS="$IFS" ! test -x /sbin/wsconsctl -a -s /etc/wsconsctl.conf || return # delete comments and blank lines IFS=" " --- 88,94 ---- wsconsctl_conf() { local save_IFS="$IFS" ! [ -x /sbin/wsconsctl -a -s /etc/wsconsctl.conf ] || return # delete comments and blank lines IFS=" "