summaryrefslogtreecommitdiffstats
path: root/mbbsd/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r--mbbsd/edit.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c
index 495b4381..965c9dbd 100644
--- a/mbbsd/edit.c
+++ b/mbbsd/edit.c
@@ -1739,9 +1739,12 @@ write_file(const char *fpath, int saveheader, int *islocal, char *mytitle, int u
case 's':
if (!HasUserPerm(PERM_LOGINOK)) {
local_article = 1;
- move(2, 0);
- outs("您尚未通過身份確認,只能 Local Save。\n");
- pressanykey();
+ // only report if local can be set.
+ if (islocal)
+ {
+ mvouts(2, 0, "您尚未通過身份確認,只能 Local Save。\n");
+ pressanykey();
+ }
} else
local_article = 0;
break;