diff options
-rw-r--r-- | pith/conf.c | 2 | ||||
-rw-r--r-- | pith/conftype.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/pith/conf.c b/pith/conf.c index 3742e9ab..4961f3ef 100644 --- a/pith/conf.c +++ b/pith/conf.c @@ -3120,7 +3120,7 @@ feature_list(int index) {"disable-password-file-saving", NULL, F_DISABLE_PASSWORD_FILE_SAVING, h_config_disable_password_file_saving, PREF_MISC, 0}, -#endif +#endif /* PASSFILE */ {"disable-regular-expression-matching-for-alternate-addresses", NULL, F_DISABLE_REGEX, h_config_disable_regex, PREF_MISC, 0}, {"disable-save-input-history", NULL, diff --git a/pith/conftype.h b/pith/conftype.h index bfb337c9..6debdb72 100644 --- a/pith/conftype.h +++ b/pith/conftype.h @@ -359,7 +359,9 @@ typedef enum { F_AUTO_INCLUDE_IN_REPLY, F_DISABLE_CONFIG_SCREEN, F_DISABLE_PASSWORD_CACHING, +#ifdef PASSFILE F_DISABLE_PASSWORD_FILE_SAVING, +#endif /* PASSFILE */ F_DISABLE_REGEX, F_DISABLE_PASSWORD_CMD, F_DISABLE_UPDATE_CMD, |