X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fhousekeeping.c;h=b0d4a1d265c93b1b977f3a1678224dc153864cd1;hp=8d65e0ec7b10792e31b86673c7154d11a29518e5;hb=a3df97101b1442ebc2e332f42aa0d5897e265d32;hpb=abea530f3028d5726ce605ca0e822ae1a0d4efe4 diff --git a/citadel/housekeeping.c b/citadel/housekeeping.c index 8d65e0ec7..b0d4a1d26 100644 --- a/citadel/housekeeping.c +++ b/citadel/housekeeping.c @@ -140,8 +140,6 @@ void do_housekeeping(void) { int do_perminute_housekeeping_now = 0; time_t now; - CtdlThreadPushName("do_housekeeping"); - /* * We do it this way instead of wrapping the whole loop in an * S_HOUSEKEEPING critical section because it eliminates the need to @@ -160,7 +158,6 @@ void do_housekeeping(void) { end_critical_section(S_HOUSEKEEPING); if (do_housekeeping_now == 0) { - CtdlThreadPopName(); return; } @@ -184,5 +181,4 @@ void do_housekeeping(void) { * All done. */ housekeeping_in_progress = 0; - CtdlThreadPopName(); }