From 59397503dcab8b1191c4cb5ee337679fa95bd2dd Mon Sep 17 00:00:00 2001 From: Marc Olivier Chouinard Date: Fri, 25 Sep 2009 22:41:23 +0000 Subject: [PATCH] Fix BSD Build git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14991 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_directory/mod_directory.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mod/applications/mod_directory/mod_directory.c b/src/mod/applications/mod_directory/mod_directory.c index 6c8bef209a..daf7c45222 100644 --- a/src/mod/applications/mod_directory/mod_directory.c +++ b/src/mod/applications/mod_directory/mod_directory.c @@ -649,29 +649,29 @@ static switch_status_t listen_entry(switch_core_session_t *session, dir_profile_ switch_safe_free(stream.data); } - if (switch_strlen_zero(buf)) { + if (switch_strlen_zero_buf(buf)) { switch_snprintf(macro, sizeof(macro), "phrase:%s:%d", DIR_RESULT_ITEM, cbt->want+1); switch_ivr_read(session, 0, 1, macro, NULL, buf, sizeof(buf), 1, profile->terminator_key); } - if (!switch_strlen_zero(recorded_name) && switch_strlen_zero(buf)) { + if (!switch_strlen_zero_buf(recorded_name) && switch_strlen_zero_buf(buf)) { switch_ivr_read(session, 0, 1, recorded_name, NULL, buf, sizeof(buf), 1, profile->terminator_key); } - if (switch_strlen_zero(recorded_name) && switch_strlen_zero(buf)) { + if (switch_strlen_zero_buf(recorded_name) && switch_strlen_zero_buf(buf)) { switch_snprintf(macro, sizeof(macro), "phrase:%s:%s", DIR_RESULT_SAY_NAME, cbt->fullname); switch_ivr_read(session, 0, 1, macro, NULL, buf, sizeof(buf), 1, profile->terminator_key); } - if (cbt->exten_visible && switch_strlen_zero(buf)) { + if (cbt->exten_visible && switch_strlen_zero_buf(buf)) { switch_snprintf(macro, sizeof(macro), "phrase:%s:%s", DIR_RESULT_AT, cbt->extension); switch_ivr_read(session, 0, 1, macro, NULL, buf, sizeof(buf), 1, profile->terminator_key); } - if (switch_strlen_zero(buf)) { + if (switch_strlen_zero_buf(buf)) { switch_snprintf(macro, sizeof(macro), "phrase:%s:%c,%c,%c,%c", DIR_RESULT_MENU, *profile->select_name_key, *profile->next_key, *profile->prev_key, *profile->new_search_key); switch_ivr_read(session, 0, 1, macro, NULL, buf, sizeof(buf), profile->digit_timeout, profile->terminator_key); } - if (!switch_strlen_zero(buf)) { + if (!switch_strlen_zero_buf(buf)) { if (buf[0] == *profile->select_name_key) { switch_copy_string(cbt->transfer_to, cbt->extension, 255); }