removed some declarations that are no longer used
authorArt Cancro <ajc@citadel.org>
Wed, 27 Dec 2017 02:35:07 +0000 (21:35 -0500)
committerArt Cancro <ajc@citadel.org>
Wed, 27 Dec 2017 02:35:07 +0000 (21:35 -0500)
citadel/internet_addressing.c
citadel/threads.c

index 5a27eec51920b2a33a8c55b7b85eebd9f5cbd4df..a9c1b6481521b626bb113f4873fb0338710999b1 100644 (file)
@@ -285,7 +285,6 @@ int CtdlHostAlias(char *fqdn) {
        char host[256], type[256];
        int found = 0;
 
-       syslog(LOG_DEBUG, "EVQ: CtdlHostAlias(%s)", fqdn);
        if (fqdn == NULL)                                       return(hostalias_nomatch);
        if (IsEmptyStr(fqdn))                                   return(hostalias_nomatch);
        if (!strcasecmp(fqdn, "localhost"))                     return(hostalias_localhost);
@@ -294,7 +293,6 @@ int CtdlHostAlias(char *fqdn) {
        if (inetcfg == NULL)                                    return(hostalias_nomatch);
 
        config_lines = num_tokens(inetcfg, '\n');
-       syslog(LOG_DEBUG, "EVQ: inetcfg config_lines is %d", config_lines);
        for (i=0; i<config_lines; ++i) {
                extract_token(buf, inetcfg, i, '\n', sizeof buf);
                extract_token(host, buf, 0, '|', sizeof host);
index 9dd6b608ba142f83977719dda9ac6dd9e4e487eb..4da15e6fb650a4985fa5b4161df92e17706f535a 100644 (file)
@@ -146,10 +146,7 @@ void InitializeMasterTSD(void) {
        memset(&masterTSD, 0, sizeof(struct thread_tsd));
 }
 
-extern void ShutDownEventQueues(void);
 
-int EventQShuttingDown = 0;
-int EVQShutDown = 0;
 /*
  * Initialize the thread system
  */