diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-05-31 19:54:33 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-09-20 07:41:11 -0700 |
commit | 1526f1caf396fefc5f09eaff884d5b92aac44997 (patch) | |
tree | 62a9c2aaf536accbee6092fa84bf4e1f9d86c611 /include | |
parent | 13ac1ba480ee3e89163825cd2777f9a6e9dcbc9f (diff) |
Remove unused ClientStateAuthenticating
Appears to be leftover from the Kerberos code deleted in 2007
(commit dfbe32b5b828cc4e3da36a0e2e6ad641164eaa5e).
Nothing left ever set clientState to ClientStateAuthenticating
Skipped over 1 to preserve existing enum numbering.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/dixstruct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dixstruct.h b/include/dixstruct.h index 90e617b66..6cc961478 100644 --- a/include/dixstruct.h +++ b/include/dixstruct.h @@ -57,8 +57,8 @@ extern _X_EXPORT void ReplyNotSwappd ( void * /* pbuf */) _X_NORETURN; typedef enum {ClientStateInitial, - ClientStateAuthenticating, - ClientStateRunning, + /* 1 is unused now, was ClientStateAuthenticating */ + ClientStateRunning = 2, ClientStateRetained, ClientStateGone } ClientState; |