]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/pop3/serv_pop3.c
Removed references to Subversion in the code
[citadel.git] / citadel / modules / pop3 / serv_pop3.c
index b8f3cb0735ea2f99455420c9b246db52b047b8c6..f4a3f06b17275f5dc84e968da04152ed7a2c892d 100644 (file)
@@ -569,7 +569,7 @@ void pop3_command_loop(void) {
        time(&CC->lastcmd);
        memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
        if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
-               syslog(LOG_ERR, "Client disconnected: ending session.");
+               syslog(LOG_ERR, "POP3 client disconnected: ending session.");
                CC->kill_me = KILLME_CLIENT_DISCONNECTED;
                return;
        }
@@ -682,6 +682,6 @@ CTDL_MODULE_INIT(pop3)
                CtdlRegisterSessionHook(pop3_cleanup_function, EVT_STOP);
        }
        
-       /* return our Subversion id for the Log */
+       /* return our module name for the log */
        return "pop3";
 }