]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix BSD Build
authorMarc Olivier Chouinard <mochouinard@moctel.com>
Fri, 25 Sep 2009 22:41:23 +0000 (22:41 +0000)
committerMarc Olivier Chouinard <mochouinard@moctel.com>
Fri, 25 Sep 2009 22:41:23 +0000 (22:41 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14991 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_directory/mod_directory.c

index 6c8bef209ad15b5f802ebd9f37cf18db1fce4e30..daf7c45222bd182444131ae2f0ea921d08412431 100644 (file)
@@ -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);
                }