diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-14 01:13:49 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-14 01:13:49 +0800 |
commit | cf296662ce4982a3b46f05026e874ad7e6aa9fd1 (patch) | |
tree | 9b24c5ae51f0e5a8f0f6b60c725557aeb45300b8 | |
parent | a3af3a2274d95cad7aef0ba4d0be280455cc5b0f (diff) | |
download | pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar.gz pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar.bz2 pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar.lz pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar.xz pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.tar.zst pttbbs-cf296662ce4982a3b46f05026e874ad7e6aa9fd1.zip |
Remove garbage code.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5636 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/mail.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/pttbbs/mbbsd/mail.c b/pttbbs/mbbsd/mail.c index 15d16a8e..ae3fb56d 100644 --- a/pttbbs/mbbsd/mail.c +++ b/pttbbs/mbbsd/mail.c @@ -1052,18 +1052,9 @@ multi_send(const char *title) vmsg(msg_cancel); return; } - listing = 80; for (i = 0; i < Vector_length(&namelist); i++) { p = Vector_get(&namelist, i); - recipient = strlen(p) + 1; - if (listing + recipient > 75) { - listing = recipient; - outc('\n'); - } else { - listing += recipient; - outc(' '); - } searchuser(p, buf); sethomepath(genbuf, buf); stampfile(genbuf, &mymail); |