diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-06-04 18:07:00 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-06-04 18:07:00 -0400 |
commit | dfbe32b5b828cc4e3da36a0e2e6ad641164eaa5e (patch) | |
tree | 1b08018adca275fe5ee38eb12366ac8d256f191a /dix/tables.c | |
parent | 75dece08fb72803d5116e6776e9f1534ff20e37b (diff) |
Remove the old Kerberos 5 authentication code.
Before you complain, this code hasn't seen material change since at least
X11R6. It certainly does not build with any modern version of Kerberos.
Anybody wanting krb5 auth to their X server should probably be using
GSSAPI instead of internal krb5 API anyway.
Diffstat (limited to 'dix/tables.c')
-rw-r--r-- | dix/tables.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/dix/tables.c b/dix/tables.c index 258ac0370..2200e3ceb 100644 --- a/dix/tables.c +++ b/dix/tables.c @@ -61,11 +61,6 @@ SOFTWARE. #include "swaprep.h" #include "swapreq.h" -#ifdef K5AUTH -extern int - k5_stage1(), k5_stage2(), k5_stage3(), k5_bad(); -#endif - int (* InitialVector[3]) ( ClientPtr /* client */ ) = @@ -515,13 +510,3 @@ _X_EXPORT ReplySwapPtr ReplySwapVector[256] = ReplyNotSwappd, /* NoOperation */ ReplyNotSwappd }; - -#ifdef K5AUTH -int (*k5_Vector[256])() = -{ - k5_bad, - k5_stage1, - k5_bad, - k5_stage3 -}; -#endif |