X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fnntp%2Fserv_nntp.c;h=20fc17e84e939567bc994ca063ae84d8209a6738;hb=7a9b0685e406cc83597171cc39d008c7e5459ca8;hp=93f65da0a57a3d4582e7d36ed63adde968467669;hpb=7f9d699a7f73ac27bcbde2075a8758744036fb98;p=citadel.git diff --git a/citadel/modules/nntp/serv_nntp.c b/citadel/modules/nntp/serv_nntp.c index 93f65da0a..20fc17e84 100644 --- a/citadel/modules/nntp/serv_nntp.c +++ b/citadel/modules/nntp/serv_nntp.c @@ -23,18 +23,7 @@ #include #include #include - -#if TIME_WITH_SYS_TIME -# include -# include -#else -# if HAVE_SYS_TIME_H -# include -# else -# include -# endif -#endif - +#include #include #include #include @@ -64,9 +53,6 @@ extern long timezone; -// ***************** BEGIN UTILITY FUNCTIONS THAT COULD BE MOVED ELSEWHERE LATER ************** - - // // Tests whether the supplied string is a valid newsgroup name // Returns true (nonzero) or false (0) @@ -177,10 +163,6 @@ void newsgroup_to_room(char *target, char *source, size_t target_size) { } -// ***************** END UTILITY FUNCTIONS THAT COULD BE MOVED ELSEWHERE LATER ************** - - - // // Here's where our NNTP session begins its happy day. // @@ -264,15 +246,6 @@ void nntp_quit(void) } -// -// Cleanup hook for this module -// -void nntp_cleanup(void) -{ - /* nothing here yet */ -} - - // // Implements the AUTHINFO USER command (RFC 4643) // @@ -1194,7 +1167,6 @@ CTDL_MODULE_INIT(nntp) CitadelServiceNNTPS); #endif - CtdlRegisterCleanupHook(nntp_cleanup); CtdlRegisterSessionHook(nntp_cleanup_function, EVT_STOP, PRIO_STOP + 250); }