]> code.citadel.org Git - citadel.git/commitdiff
Fixed a bug in the page sending code
authorArt Cancro <ajc@citadel.org>
Thu, 4 Feb 1999 13:09:47 +0000 (13:09 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 4 Feb 1999 13:09:47 +0000 (13:09 +0000)
citadel/serv_chat.c

index 6f3c41efbdc10bb6aaf4446ebc32e9bc0be5ab52..7a9843cc1c2b8bdd01f1608c9d2f0804bf21ef46 100644 (file)
@@ -465,7 +465,7 @@ int send_express_message(char *lun, char *x_user, char *x_msg)
                                        mallok(sizeof (struct ExpressMessage));
                                memset(newmsg, 0,
                                        sizeof (struct ExpressMessage));
-                               strcpy(newmsg->sender, un);
+                               strcpy(newmsg->sender, lun);
                                if (!strcasecmp(x_user, "broadcast"))
                                        newmsg->flags |= EM_BROADCAST;
                                newmsg->text = mallok(strlen(x_msg)+2);