diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-04-01 22:27:50 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-04-01 22:27:50 +0800 |
commit | 016edde1de51777e3cd8588ca72757655e6e5548 (patch) | |
tree | a9a60de186db4f90001bbfec2cdb90581224a878 /mbbsd | |
parent | 3685061b7777ae53d30221c5c8de4ec0009a30b2 (diff) | |
download | pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar.gz pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar.bz2 pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar.lz pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar.xz pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.tar.zst pttbbs-016edde1de51777e3cd8588ca72757655e6e5548.zip |
fix message about mailbox full.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3317 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/mail.c | 2 | ||||
-rw-r--r-- | mbbsd/read.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index fd3245ae..6c6ff5ab 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1631,7 +1631,7 @@ send_inner_mail(const char *fpath, const char *title, const char *receiver) sethomedir(fname, rightid); if (strcmp(rightid, cuser.userid) == 0) { if (chk_mailbox_limit()) - return -2; + return -4; } sethomepath(fname, rightid); diff --git a/mbbsd/read.c b/mbbsd/read.c index be1d0d45..fa94c63e 100644 --- a/mbbsd/read.c +++ b/mbbsd/read.c @@ -399,6 +399,8 @@ mail_forward(const fileheader_t * fhdr, const char *direct, int mode) vmsg(msg_fwd_err2); #endif break; + case -4: + vmsg("«H½c¤wº¡"); default: break; } |