summaryrefslogtreecommitdiff
path: root/Xext/xace.h
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2006-12-01 21:12:21 -0500
committerEamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil>2006-12-01 21:15:41 -0500
commitac90ce58ba1da3ed605adf75f4d54c34b578c402 (patch)
tree3f98bd454b521263786e9bd4f3d17187c80f39a9 /Xext/xace.h
parentf44f14fe564d834568a0afefba944223a73ea0f5 (diff)
Naming change: Security*Operation -> Xace*Operation
Diffstat (limited to 'Xext/xace.h')
-rw-r--r--Xext/xace.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Xext/xace.h b/Xext/xace.h
index 6f998951e..7231b04bc 100644
--- a/Xext/xace.h
+++ b/Xext/xace.h
@@ -21,9 +21,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define _XACE_H
/* Hook return codes */
-#define SecurityErrorOperation 0
-#define SecurityAllowOperation 1
-#define SecurityIgnoreOperation 2
+#define XaceErrorOperation 0
+#define XaceAllowOperation 1
+#define XaceIgnoreOperation 2
#ifdef XACE
@@ -107,10 +107,10 @@ extern void XaceCensorImage(
/* Define calls away when XACE is not being built. */
#ifdef __GNUC__
-#define XaceHook(args...) SecurityAllowOperation
+#define XaceHook(args...) XaceAllowOperation
#define XaceCensorImage(args...) { ; }
#else
-#define XaceHook(...) SecurityAllowOperation
+#define XaceHook(...) XaceAllowOperation
#define XaceCensorImage(...) { ; }
#endif