diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-06 11:59:38 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-06 11:59:38 +0800 |
commit | 067faff5d4aa230c86320393d03d8eb1d4303f7a (patch) | |
tree | 3a5620f3950bdb57161404d68fad7fee04097b87 | |
parent | fe6309732b3f4a4006e0f7dd3eb61009abb6b5da (diff) | |
download | pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar.gz pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar.bz2 pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar.lz pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar.xz pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.tar.zst pttbbs-067faff5d4aa230c86320393d03d8eb1d4303f7a.zip |
username -> nickname
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2902 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/chc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/chc.c b/mbbsd/chc.c index 52459ff6..c2a4c991 100644 --- a/mbbsd/chc.c +++ b/mbbsd/chc.c @@ -1049,7 +1049,7 @@ chc_init_photo(void) switch (line) { case 0: sprintf(genbuf, "<代號> %s", cuser.userid); break; - case 1: sprintf(genbuf, "<暱稱> %.16s", cuser.username); break; + case 1: sprintf(genbuf, "<暱稱> %.16s", cuser.nickname); break; case 2: sprintf(genbuf, "<上站> %d", cuser.numlogins); break; case 3: sprintf(genbuf, "<文章> %d", cuser.numposts); break; case 4: sprintf(genbuf, "<職位> %-4s %s", country, level); break; @@ -1098,7 +1098,7 @@ chc_init_photo(void) move(line, 37); switch (line - 9) { case 0: sprintf(PHOTO(line), "<代號> %-16.16s ", xuser.userid); break; - case 1: sprintf(PHOTO(line), "<暱稱> %-16.16s ", xuser.username); break; + case 1: sprintf(PHOTO(line), "<暱稱> %-16.16s ", xuser.nickname); break; case 2: sprintf(PHOTO(line), "<上站> %-16d ", xuser.numlogins); break; case 3: sprintf(PHOTO(line), "<文章> %-16d ", xuser.numposts); break; case 4: sprintf(PHOTO(line), "<職位> %-4s %-10s ", country, level); break; |