X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_chat.c;h=ce6f7324b08e7a1a8c2ec5d122368ee8cb4c6758;hb=83543fd906ac428c01815a04d78d6a17e23eea31;hp=b323dab7a5590a46f2a9efb93afc0fe6bcc11373;hpb=b4057d567a5a15e17b5ffc89ea31b372b0c2f5e1;p=citadel.git diff --git a/citadel/serv_chat.c b/citadel/serv_chat.c index b323dab7a..ce6f7324b 100644 --- a/citadel/serv_chat.c +++ b/citadel/serv_chat.c @@ -639,7 +639,7 @@ int send_instant_message(char *lun, char *x_user, char *x_msg) /* Now save a copy in the global log room, if configured */ if (strlen(config.c_logpages) > 0) { create_room(config.c_logpages, 3, "", 0, 1, 1, VIEW_BBS); - CtdlSaveMsgPointerInRoom(config.c_logpages, msgnum, 0); + CtdlSaveMsgPointerInRoom(config.c_logpages, msgnum, 0, NULL); } /* Save a copy in each recipient's log room, creating those @@ -649,7 +649,7 @@ int send_instant_message(char *lun, char *x_user, char *x_msg) */ while (sl != NULL) { create_room(sl->roomname, 5, "", 0, 1, 1, VIEW_BBS); - CtdlSaveMsgPointerInRoom(sl->roomname, msgnum, 0); + CtdlSaveMsgPointerInRoom(sl->roomname, msgnum, 0, NULL); sptr = sl->next; free(sl); sl = sptr;