]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix minor oops on FS-4840
authorChristopher Rienzo <chris@rienzo.net>
Fri, 16 Nov 2012 17:46:35 +0000 (17:46 +0000)
committerChristopher Rienzo <chris@rienzo.net>
Fri, 16 Nov 2012 17:46:35 +0000 (17:46 +0000)
src/mod/endpoints/mod_dingaling/mod_dingaling.c

index e7c42e727d3642ebf4e2f1de0494d63c0f1fec60..70f699363a0ba7d2149bce4b5bc363d79217799f 100644 (file)
@@ -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);
                        }