PERFORCE change 111055 for review

Todd Miller millert at FreeBSD.org
Mon Dec 4 10:43:44 PST 2006


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

Change 111055 by millert at millert_g5tower on 2006/12/04 18:43:24

	Print error if no migscs data.

Affected files ...

.. //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/ss/mach_av.c#7 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/ss/mach_av.c#7 (text+ko) ====

@@ -148,8 +148,10 @@
 	void  *tdata;
 
 	if (sebsd_find_data("migscs_data", &tdata, &tsize) != 0 ||
-	    sebsd_load_migscs(tdata, tsize) != 0)
+	    sebsd_load_migscs(tdata, tsize) != 0) {
+		printf("sebsd:  migscs data missing, using empty table\n");
 		msgid2class = hashtab_create(msgid_hash, msgid_cmp, 3);
+	}
 }
 
 


More information about the trustedbsd-cvs mailing list