forked from Mirrors/freeswitch
[mod_distributor] Reload message should be same as others (+OK instead of +ok)
This commit is contained in:
parent
99d9c3bd65
commit
f3604557e5
|
@ -403,7 +403,7 @@ SWITCH_STANDARD_API(distributor_ctl_function)
|
||||||
if (argc > 0) {
|
if (argc > 0) {
|
||||||
if (!strcasecmp(argv[0], "reload")) {
|
if (!strcasecmp(argv[0], "reload")) {
|
||||||
if (load_config(SWITCH_TRUE) == SWITCH_STATUS_SUCCESS) {
|
if (load_config(SWITCH_TRUE) == SWITCH_STATUS_SUCCESS) {
|
||||||
stream->write_function(stream, "+ok reloaded.\n");
|
stream->write_function(stream, "+OK reloaded.\n");
|
||||||
err = NULL;
|
err = NULL;
|
||||||
}
|
}
|
||||||
} else if (!strcasecmp(argv[0], "dump")) {
|
} else if (!strcasecmp(argv[0], "dump")) {
|
||||||
|
|
Loading…
Reference in New Issue