From bd81c371aecd206c62df61fe3eb690c92f0a2b76 Mon Sep 17 00:00:00 2001 From: todd <> Date: Thu, 29 Jun 2006 17:23:28 +0000 Subject: [PATCH] do not add an extra space; nwid and description come out wrong fix as proposed by maja@, thanks! --- src/etc/netstart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/netstart b/src/etc/netstart index 2145652e..c9487f36 100644 --- a/src/etc/netstart +++ b/src/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.113 2005/12/28 04:55:35 david Exp $ +# $OpenBSD: netstart,v 1.114 2006/06/29 17:23:28 todd Exp $ # Strip comments (and leading/trailing whitespace if IFS is set) # from a file and spew to stdout @@ -102,7 +102,7 @@ ifstart() { else alias= fi - cmd="ifconfig $if $af $alias $name " + cmd="ifconfig $if $af $alias $name" case "$dt" in dest) cmd="$cmd $dtaddr"