Fix typo in logs

This commit is contained in:
Louis Sautier 2019-03-07 14:17:31 +01:00
parent 42bbebb781
commit 88b36662c3
1 changed files with 1 additions and 1 deletions

View File

@ -515,7 +515,7 @@ sub bind_ipc {
if (zmq_bind($options{socket}, 'ipc://' . $options{ipc_file}) == -1) { if (zmq_bind($options{socket}, 'ipc://' . $options{ipc_file}) == -1) {
$self->{logger}->writeLogError("Cannot bind ipc '$options{ipc_file}': $!"); $self->{logger}->writeLogError("Cannot bind ipc '$options{ipc_file}': $!");
# try create dir # try create dir
$self->{logger}->writeLogError("Maybe dirctory not exist. We try to create it!!!"); $self->{logger}->writeLogError("Maybe directory does not exist. Attempting to create it!!!");
if (!mkdir(dirname($options{ipc_file}))) { if (!mkdir(dirname($options{ipc_file}))) {
zmq_close($options{socket}); zmq_close($options{socket});
exit(1); exit(1);