From: Christopher Rienzo Date: Fri, 16 Nov 2012 17:46:35 +0000 (+0000) Subject: Fix minor oops on FS-4840 X-Git-Tag: v1.3.4~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59c8982083da5e0ef2759a3aaafbba185b1fed78;p=thirdparty%2Ffreeswitch.git Fix minor oops on FS-4840 --- diff --git a/src/mod/endpoints/mod_dingaling/mod_dingaling.c b/src/mod/endpoints/mod_dingaling/mod_dingaling.c index e7c42e727d..70f699363a 100644 --- a/src/mod/endpoints/mod_dingaling/mod_dingaling.c +++ b/src/mod/endpoints/mod_dingaling/mod_dingaling.c @@ -2668,7 +2668,7 @@ static switch_status_t list_profiles(const char *line, const char *cursor, switc } } else if (!strncmp("dl_login", line, 8)) { if (!switch_test_flag(profile, TFLAG_IO)) { - char *profile_name = switch_mprintf("%s%s", "profile=", profile->name); + char *profile_name = switch_mprintf("profile=%s", profile->name); switch_console_push_match(&my_matches, profile_name); free(profile_name); }