git: 9front

Download patch

ref: c14ddb5750c19b1fb9fc1fee1315d4097d18b782
parent: b1af5fa77fac931dc8d0d8a459c8c9154e473242
author: BurnZeZ <devnull@localhost>
date: Sat Mar 30 11:09:00 EDT 2019

bootrc: simplify if statement

--- a/sys/src/9/boot/net.rc
+++ b/sys/src/9/boot/net.rc
@@ -15,7 +15,7 @@
 		}
 	}
 
-	if(~ $1 ether || ~ $1 gbe && ~ $#* 2) @{
+	if(~ $1 ether gbe && ~ $#* 2) @{
 		ip/ipconfig -6 $*
 		test -e /env/nora6 || ip/ipconfig $* ra6 recvra 1 &
 		ip/ipconfig -p $* &
--