Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jul 2008 16:35:21 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 145334 for review
Message-ID:  <200807161635.m6GGZLUs076601@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=145334

Change 145334 by sam@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;
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200807161635.m6GGZLUs076601>