diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-10 06:15:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-10 06:15:10 +0000 |
commit | dbe54165a86a3249b477a8d384e60b5872592748 (patch) | |
tree | d97cc15e446dd0c45afda4922e571007b1fc72a2 | |
parent | 311e70de96d103b08dff5b0d661efd59a7aa80a6 (diff) |
Fix a break statement.
-rw-r--r-- | distrib/alpha/ramdisk/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/alpha/ramdisk/install.sub b/distrib/alpha/ramdisk/install.sub index fdce73c338b..12ddd2a159e 100644 --- a/distrib/alpha/ramdisk/install.sub +++ b/distrib/alpha/ramdisk/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.3 1997/05/09 18:50:31 millert Exp $ +# $OpenBSD: install.sub,v 1.4 1997/05/10 06:15:09 millert Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -1098,7 +1098,7 @@ __get_timezone_1 if [ -f ${_zonepath}/usr/share/zoneinfo/$_a ]; then TZ="$_a" echo "You have selected timezone \"$_a\"". - break 2 + break fi echo "'/usr/share/zoneinfo/$_a' is not a valid timezone on this system." ;; |