]> code.citadel.org Git - citadel.git/blobdiff - citadel/context.h
Removed nonce/apop/pas2, no longer used by anyone
[citadel.git] / citadel / context.h
index cb7d92f0293f3b451ad85b0930429a6b1dbf92de..205cf4f1eefa9a00c5da43ba577fc38f49e5fc04 100644 (file)
@@ -109,10 +109,6 @@ struct CitContext {
        struct ctdluser user;   /* Database record buffers */
        struct ctdlroom room;
 
-       /* Beginning of cryptography - session nonce */
-       char cs_nonce[NONCE_SIZE];      /* The nonce for this session's next auth transaction */
-
-
        /* A linked list of all instant messages sent to us. */
        struct ExpressMessage *FirstExpressMessage;
        int disable_exp;        /* Set to 1 to disable incoming pages */
@@ -186,7 +182,7 @@ static INLINE void become_session(CitContext *which_con) {
 */
        citthread_setspecific(MyConKey, (void *)which_con );
 /*
-       CtdlLogPrintf(CTDL_DEBUG, "[%d]: Now doing %s\n", 
+       syslog(LOG_DEBUG, "[%d]: Now doing %s\n", 
                      (int) tid, 
                      ((which_con != NULL) && (which_con->ServiceName != NULL)) ? 
                      which_con->ServiceName:"");