56d326b
diff --exclude-from=exclude -N -u -r nsalibselinux/man/man8/getsebool.8 libselinux-1.27.25/man/man8/getsebool.8
56d326b
--- nsalibselinux/man/man8/getsebool.8	2005-11-16 21:39:52.000000000 -0500
56d326b
+++ libselinux-1.27.25/man/man8/getsebool.8	2005-11-29 14:19:22.000000000 -0500
56d326b
@@ -9,7 +9,7 @@
56d326b
 .SH "DESCRIPTION"
56d326b
 .B getsebool 
56d326b
 reports where a particular SELinux boolean or
56d326b
-all SELinux booleans are active or inactive.  
56d326b
+all SELinux booleans are on or off
56d326b
 In certain situations a boolean can be in one state with a pending 
56d326b
 change to the other state.  getsebool will report this as a pending change.
56d326b
 The pending value indicates
56d326b
diff --exclude-from=exclude -N -u -r nsalibselinux/utils/getsebool.c libselinux-1.27.25/utils/getsebool.c
56d326b
--- nsalibselinux/utils/getsebool.c	2004-11-30 15:56:56.000000000 -0500
56d326b
+++ libselinux-1.27.25/utils/getsebool.c	2005-11-29 14:09:58.000000000 -0500
56d326b
@@ -85,11 +85,11 @@
56d326b
 		}
56d326b
 		if (pending != active) {
56d326b
 			printf("%s --> %s pending: %s\n", names[i],
56d326b
-			       ( active ? "active" : "inactive"),
56d326b
-			       ( pending ? "active" : "inactive"));
56d326b
+			       ( active ? "on" : "off"),
56d326b
+			       ( pending ? "on" : "off"));
56d326b
 		} else {
56d326b
 			printf("%s --> %s\n", names[i],
56d326b
-			       ( active ? "active" : "inactive"));
56d326b
+			       ( active ? "on" : "off"));
56d326b
 		}
56d326b
 	}
ae85aab