]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7628: Fixed name of Erlang naming daemon
authorSergey Safarov <s.safarov@gmail.com>
Thu, 18 Jun 2015 10:22:57 +0000 (13:22 +0300)
committerSergey Safarov <s.safarov@gmail.com>
Thu, 18 Jun 2015 10:22:57 +0000 (13:22 +0300)
src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c

index a9dc0743f905b215c2ab2f2aacf5bd73c44e1774..83d0ae7036b5e206be3c4ccff587392aa3533654 100644 (file)
@@ -2084,15 +2084,15 @@ SWITCH_MODULE_RUNTIME_FUNCTION(mod_erlang_event_runtime)
 
        /* return value is -1 for error, a descriptor pointing to epmd otherwise */
        if ((epmdfd = ei_publish(&ec, prefs.port)) == -1) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Failed to publish port to empd, trying to start empd via system()\n");
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Failed to publish port to epmd, trying to start epmd via system()\n");
                if (system("epmd -daemon")) {
                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,
-                                                         "Failed to start empd manually! Is epmd in $PATH? If not, start it yourself or run an erl shell with -sname or -name\n");
+                                                         "Failed to start epmd manually! Is epmd in $PATH? If not, start it yourself or run an erl shell with -sname or -name\n");
                        goto init_failed;
                }
                switch_yield(100000);
                if ((epmdfd = ei_publish(&ec, prefs.port)) == -1) {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to publish port to empd AGAIN\n");
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Failed to publish port to epmd AGAIN\n");
                        goto init_failed;
                }
        }