Eager-zero and compress CDB_USETABLE records to save disk space.
[citadel.git] / citadel / modules / network / serv_netspool.c
index ab0aa9f9963dd6032d632c6261607f89d953b343..5d7daa7f0a808dcd75cabeab2d76914d0bc419d7 100644 (file)
@@ -2,7 +2,7 @@
  * This module handles shared rooms, inter-Citadel mail, and outbound
  * mailing list processing.
  *
- * Copyright (c) 2000-2016 by the citadel.org team
+ * Copyright (c) 2000-2017 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License, version 3.
@@ -520,12 +520,7 @@ int network_usetable(struct CtdlMessage *msg)
                }
        }
        now = time(NULL);
-       if (CheckIfAlreadySeen("Networker Import",
-                              msgid,
-                              now, 0,
-                              eUpdate,
-                              CCC->cs_pid, 0) != 0)
-       {
+       if (CheckIfAlreadySeen(msgid, now, 0, eUpdate)) {
                FreeStrBuf(&msgid);
                return(1);
        }