diff options
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 263fba09..fa97f55f 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -361,13 +361,20 @@ void Customize(void) #ifdef DBCSAWARE case 'i': +#if 0 + /* Actually, you can't try detection here. + * this function (customization)was not designed with the ability + * to refresh itself. + */ if(key == 'I') // one more try { if(u_detectDBCSAwareEvilClient()) cuser.uflag &= ~DBCSAWARE_FLAG; else cuser.uflag |= DBCSAWARE_FLAG; + } else +#endif cuser.uflag ^= DBCSAWARE_FLAG; break; #endif |