ptt / pttbbs

PTT BBS source code
GNU General Public License v2.0
1.1k stars 139 forks source link

Fix `undeclared identifier` error when `USE_VERIFYDB` is not defined #88

Closed IepIweidieng closed 4 years ago

IepIweidieng commented 4 years ago

mbbsd/menu.c unconditionally references verifydb_admin_search_display, but the declaration of the function is disabled when USE_VERIFYDB is not defined. This causes the compilation fails with the aforementioned error.

This fixes the problem by surrounding the referencing code with an appropriate preprocessor condition.

robertabcd commented 4 years ago

Thanks!