]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/crypto/serv_crypto.c
MODULES: add priorities in execution
[citadel.git] / citadel / modules / crypto / serv_crypto.c
index 249d9960a1720ae468c2bc100bd8c2d5763db099..a9761a549e6adf267786151fcb617581686284fb 100644 (file)
@@ -385,7 +385,7 @@ void init_ssl(void)
        CtdlRegisterProtoHook(cmd_stls, "STLS", "Start SSL/TLS session");
        CtdlRegisterProtoHook(cmd_gtls, "GTLS",
                              "Get SSL/TLS session status");
-       CtdlRegisterSessionHook(endtls, EVT_STOP);
+       CtdlRegisterSessionHook(endtls, EVT_STOP, PRIO_STOP + 10);
 }
 
 
@@ -497,7 +497,7 @@ int client_readline_sslbuffer(StrBuf *Line, StrBuf *IOBuf, const char **Pos, int
                        StrBufAppendBufPlain(Line, pos, 
                                             StrLength(IOBuf) - (pos - ChrPtr(IOBuf)), 0);
                        FlushStrBuf(IOBuf);
-                       pos = *Pos = NULL;
+                       *Pos = NULL;
                }
                else {
                        int n = 0;
@@ -510,7 +510,7 @@ int client_readline_sslbuffer(StrBuf *Line, StrBuf *IOBuf, const char **Pos, int
 
                        if (StrLength(IOBuf) <= (pch - ChrPtr(IOBuf) + 1)) {
                                FlushStrBuf(IOBuf);
-                               pos = *Pos = NULL;
+                               *Pos = NULL;
                        }
                        else 
                                *Pos = pch + 1;