diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-08-23 18:03:13 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-08-23 18:03:13 +0800 |
commit | d9a6b23c1a49bdb5997edaeea19534452ce9a73c (patch) | |
tree | d46d5ef6a558ae55964a99b4da5ab92fe1475dd7 /daemon | |
parent | 338831dec1ce98ec5f7762b8fe01d775cfe3a0a2 (diff) | |
download | pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar.gz pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar.bz2 pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar.lz pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar.xz pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.tar.zst pttbbs-d9a6b23c1a49bdb5997edaeea19534452ce9a73c.zip |
* unquote [new] [guest].
* reason: we've heard that some people really try to input "[new]"...
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4764 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/logind/logind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/logind/logind.c b/daemon/logind/logind.c index 748fdc49..7de948bd 100644 --- a/daemon/logind/logind.c +++ b/daemon/logind/logind.c @@ -720,13 +720,13 @@ _set_bind_opt(int sock) #endif #ifdef STR_GUEST -# define MSG_GUEST ",或以[" STR_GUEST "]參觀" +# define MSG_GUEST ",或以 " STR_GUEST " 參觀" #else # define MSG_GUEST "" #endif #ifdef STR_REGNEW -# define MSG_REGNEW ",或以[new]註冊" +# define MSG_REGNEW ",或以 new 註冊" #else # define MSG_REGNEW #endif |