diff options
Diffstat (limited to 'Xext/xace.h')
-rw-r--r-- | Xext/xace.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Xext/xace.h b/Xext/xace.h index ec138426d..083261273 100644 --- a/Xext/xace.h +++ b/Xext/xace.h @@ -20,10 +20,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef _XACE_H #define _XACE_H -/* Hook return codes */ -#define XaceErrorOperation 0 -#define XaceAllowOperation 1 -#define XaceIgnoreOperation 2 +/* Special value used for ignore operation. This is a deprecated feature + * only for Security extension support. Do not use in new code. + */ +#define XaceIgnoreError BadRequest #ifdef XACE @@ -97,10 +97,10 @@ extern void XaceCensorImage( /* Define calls away when XACE is not being built. */ #ifdef __GNUC__ -#define XaceHook(args...) XaceAllowOperation +#define XaceHook(args...) Success #define XaceCensorImage(args...) { ; } #else -#define XaceHook(...) XaceAllowOperation +#define XaceHook(...) Success #define XaceCensorImage(...) { ; } #endif |