From eb6beec78f0e86b388bb027f54611beccfbf984e Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 10 Jul 2009 19:15:00 -0400 Subject: [PATCH] Correct out of place { --- etc/rc.initial.firmware_update | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/rc.initial.firmware_update b/etc/rc.initial.firmware_update index d746485ad0..2ae84b73c7 100644 --- a/etc/rc.initial.firmware_update +++ b/etc/rc.initial.firmware_update @@ -92,7 +92,7 @@ switch ($command) { echo "Binary DIFF upgrade file detected...\n"; $type = "bdiff"; } - if(strstr($url,"nanobsd")) {} + if(strstr($url,"nanobsd")) { echo "NanoBSD upgrade file detected...\n"; $type = "nanobsd"; } @@ -104,6 +104,7 @@ switch ($command) { fclose($fp); die -1; } + } case "2": echo "\nEnter the complete path to the .tgz update file: "; $path = chop(fgets($fp));