From: Timo Sirainen Date: Mon, 26 Oct 2009 23:46:23 +0000 (-0400) Subject: master: Removed unused verbose_proctitle setting. X-Git-Tag: 2.0.alpha3~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6929aa951c69572fbccefeecddcad8b7020fc6a;p=thirdparty%2Fdovecot%2Fcore.git master: Removed unused verbose_proctitle setting. --HG-- branch : HEAD --- diff --git a/src/master/master-settings.c b/src/master/master-settings.c index 51763fb07f..f7ee1e0d92 100644 --- a/src/master/master-settings.c +++ b/src/master/master-settings.c @@ -179,7 +179,6 @@ static const struct setting_define master_setting_defines[] = { DEF(SET_BOOL, version_ignore), DEF(SET_BOOL, mail_debug), DEF(SET_BOOL, auth_debug), - DEF(SET_BOOL, verbose_proctitle), DEF(SET_UINT, first_valid_uid), DEF(SET_UINT, last_valid_uid), @@ -204,7 +203,6 @@ static const struct master_settings master_default_settings = { MEMBER(version_ignore) FALSE, MEMBER(mail_debug) FALSE, MEMBER(auth_debug) FALSE, - MEMBER(verbose_proctitle) FALSE, MEMBER(first_valid_uid) 500, MEMBER(last_valid_uid) 0, diff --git a/src/master/master-settings.h b/src/master/master-settings.h index 3b6a6107d6..25c1d8eab5 100644 --- a/src/master/master-settings.h +++ b/src/master/master-settings.h @@ -16,7 +16,6 @@ struct master_settings { bool version_ignore; bool mail_debug; bool auth_debug; - bool verbose_proctitle; unsigned int first_valid_uid, last_valid_uid; unsigned int first_valid_gid, last_valid_gid;