PERFORCE change 145334 for review

Sam Leffler sam at FreeBSD.org
Wed Jul 16 16:35:21 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=145334

Change 145334 by sam at sam_ebb on 2008/07/16 16:34:43

	don't silently exit if the regdomain.xml file is missing

Affected files ...

.. //depot/projects/vap/sbin/ifconfig/ifieee80211.c#22 edit

Differences ...

==== //depot/projects/vap/sbin/ifconfig/ifieee80211.c#22 (text+ko) ====

@@ -185,7 +185,7 @@
 	if (rdp == NULL) {
 		rdp = lib80211_alloc_regdata();
 		if (rdp == NULL)
-			exit(-1);
+			errx(-1, "missing or corrupted regdomain database");
 	}
 	return rdp;
 }


More information about the p4-projects mailing list