]> code.citadel.org Git - citadel.git/blobdiff - citadel/msgbase.c
* Stripped the build of obsolete parts of the old networker no longer in use.
[citadel.git] / citadel / msgbase.c
index df567a28928fab473ecfe10cae5941813b090e3b..6c92b64c13befba32d3afeda123f7fdf01960d8b 100644 (file)
@@ -1547,7 +1547,7 @@ void serialize_message(struct ser_ret *ret,               /* return values */
                ret->len = ret->len +
                        strlen(msg->cm_fields[(int)forder[i]]) + 2;
 
-       lprintf(9, "calling malloc(%d)\n", ret->len);
+       lprintf(9, "serialize_message() calling malloc(%d)\n", ret->len);
        ret->ser = mallok(ret->len);
        if (ret->ser == NULL) {
                ret->len = 0;
@@ -1811,7 +1811,7 @@ long CtdlSaveMsg(struct CtdlMessage *msg, /* message to save */
        newmsgid = send_message(msg, network_fp);
        if (network_fp != NULL) {
                fclose(network_fp);
-               system("exec nohup ./netproc -i >/dev/null 2>&1 &");
+               /* FIXME start a network run here */
        }
 
        if (newmsgid <= 0L) return(-1);