=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/netstart,v retrieving revision 1.94 retrieving revision 1.95 diff -c -r1.94 -r1.95 *** src/etc/netstart 2004/01/14 04:41:02 1.94 --- src/etc/netstart 2004/03/13 00:59:02 1.95 *************** *** 1,6 **** #!/bin/sh - # ! # $OpenBSD: netstart,v 1.94 2004/01/14 04:41:02 deraadt Exp $ # Returns true if $1 contains only alphanumerics isalphanumeric() { --- 1,6 ---- #!/bin/sh - # ! # $OpenBSD: netstart,v 1.95 2004/03/13 00:59:02 mcbride Exp $ # Returns true if $1 contains only alphanumerics isalphanumeric() { *************** *** 254,261 **** test "$if" = "*" && continue case $if in ! "carp"*|"gif"*|"gre"*) ! # CARP, GIF and GRE interfaces need the routes to be setup # before they are configured. continue ;; --- 254,261 ---- test "$if" = "*" && continue case $if in ! "carp"*|"gif"*|"gre"*|"pfsync"*) ! # CARP, GIF, GRE and PFSYNC interfaces need the routes to be setup # before they are configured. continue ;; *************** *** 319,325 **** ;; esac ! # Configure all the carp, gif and gre interfaces which we know about. # They were delayed because they require the routes to be set. for hn in /etc/hostname.*; do # Strip off /etc/hostname. prefix --- 319,325 ---- ;; esac ! # Configure all the carp, gif, gre and pfsync interfaces which we know about. # They were delayed because they require the routes to be set. for hn in /etc/hostname.*; do # Strip off /etc/hostname. prefix *************** *** 327,333 **** test "$if" = "*" && continue case $if in ! "carp"*|"gif"*|"gre"*) ifstart $if ;; *) --- 327,333 ---- test "$if" = "*" && continue case $if in ! "carp"*|"gif"*|"gre"*|"pfsync"*) ifstart $if ;; *)