From: Russell Bryant Date: Wed, 7 May 2008 18:33:50 +0000 (+0000) Subject: Only save a password if a username exists. X-Git-Tag: 1.6.2.0-beta1~2293 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60f877ad5f2190ef2454777804e136b391da472c;p=thirdparty%2Fasterisk.git Only save a password if a username exists. (closes issue #12600) Reported By: suretec Patch by me git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115523 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c index 52855fdec0..33ed247b78 100644 --- a/res/res_config_ldap.c +++ b/res/res_config_ldap.c @@ -1401,11 +1401,14 @@ int parse_config(void) } else ast_copy_string(user, s, sizeof(user)); - if (!(s = ast_variable_retrieve(config, "_general", "pass"))) { - ast_log(LOG_WARNING, "No directory password found, using 'asterisk' as default.\n"); - ast_copy_string(pass, "asterisk", sizeof(pass) - 1); - } else - ast_copy_string(pass, s, sizeof(pass)); + if (!ast_strlen_zero(user)) { + if (!(s = ast_variable_retrieve(config, "_general", "pass"))) { + ast_log(LOG_WARNING, "No directory password found, using 'asterisk' as default.\n"); + ast_copy_string(pass, "asterisk", sizeof(pass)); + } else { + ast_copy_string(pass, s, sizeof(pass)); + } + } /* URL is preferred, use host and port if not found */ if ((s = ast_variable_retrieve(config, "_general", "url"))) {