X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Froom_ops.c;h=a39adfa404503116209ba0b6a110391da5319c9d;hb=1cb1846881827420b481ce8742c4d10ac18afe9c;hp=06ddfc7f4b7eb4eaed720a22cfb1b90e253813e4;hpb=561766aa347a0f6673e7bbebf7e29a70e456e507;p=citadel.git diff --git a/citadel/room_ops.c b/citadel/room_ops.c index 06ddfc7f4..a39adfa40 100644 --- a/citadel/room_ops.c +++ b/citadel/room_ops.c @@ -1044,7 +1044,7 @@ void cmd_setr(char *args) CC->quickroom.QRdirname); system(buf); } - sprintf(buf, "%s> edited by %s", CC->quickroom.QRname, CC->curr_user); + sprintf(buf, "%s> edited by %s\n", CC->quickroom.QRname, CC->curr_user); aide_message(buf); cprintf("%d Ok\n", OK); } @@ -1112,7 +1112,7 @@ void cmd_seta(char *new_ra) * the room table, otherwise it would deadlock! */ if (post_notice == 1) { - sprintf(buf, "%s is now room aide for %s>", + sprintf(buf, "%s is now room aide for %s>\n", usbuf.fullname, CC->quickroom.QRname); aide_message(buf); } @@ -1221,7 +1221,7 @@ void cmd_kill(char *argbuf) usergoto(BASEROOM, 0); /* Return to the Lobby */ /* tell the world what we did */ - sprintf(aaa, "%s> killed by %s", + sprintf(aaa, "%s> killed by %s\n", deleted_room_name, CC->curr_user); aide_message(aaa); cprintf("%d '%s' deleted.\n", OK, deleted_room_name); @@ -1402,6 +1402,7 @@ void cmd_cre8(char *args) strcat(aaa, "\n Password: "); strcat(aaa, new_room_pass); } + strcat(aaa, "\n"); aide_message(aaa); cprintf("%d '%s' has been created.\n", OK, qrbuf.QRname);