Merge pull request #76 from sbraz/typo

Fix typo in logs
This commit is contained in:
qgarnier 2019-08-23 09:29:25 +02:00 committed by GitHub
commit 5158666650
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ sub bind_ipc {
if (zmq_bind($options{socket}, 'ipc://' . $options{ipc_file}) == -1) {
$self->{logger}->writeLogError("Cannot bind ipc '$options{ipc_file}': $!");
# 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}))) {
zmq_close($options{socket});
exit(1);