summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Stothard <andrew.stothard@gmail.com>2011-09-15 15:17:09 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-09-15 15:17:09 +0200
commitb7e69a240037277e77685af5ea5623cdd89ec2d2 (patch)
treec3384ab9d202890acb31d579bcbfe2683da5735f
parent76c9616612a23796349a42d9b236a1cb0b836133 (diff)
downloadrsyslog-b7e69a240037277e77685af5ea5623cdd89ec2d2.tar.gz
rsyslog-b7e69a240037277e77685af5ea5623cdd89ec2d2.tar.xz
rsyslog-b7e69a240037277e77685af5ea5623cdd89ec2d2.zip
typo fix
-rw-r--r--tools/omfile.c2
-rw-r--r--tools/ompipe.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/omfile.c b/tools/omfile.c
index a4f010c6..02418c46 100644
--- a/tools/omfile.c
+++ b/tools/omfile.c
@@ -749,7 +749,7 @@ CODESTARTparseSelectorAct
if(pData->pStrm == NULL) {
DBGPRINTF("Error opening log file: %s\n", pData->f_fname);
- errmsg.LogError(0, RS_RET_NO_FILE_ACCESS, "Could no open output file '%s'", pData->f_fname);
+ errmsg.LogError(0, RS_RET_NO_FILE_ACCESS, "Could not open output file '%s'", pData->f_fname);
}
}
CODE_STD_FINALIZERparseSelectorAct
diff --git a/tools/ompipe.c b/tools/ompipe.c
index 541b6552..998a8f4a 100644
--- a/tools/ompipe.c
+++ b/tools/ompipe.c
@@ -203,7 +203,7 @@ CODESTARTparseSelectorAct
if(pData->fd < 0 ) {
pData->fd = -1;
DBGPRINTF("Error opening log pipe: %s\n", pData->f_fname);
- errmsg.LogError(0, RS_RET_NO_FILE_ACCESS, "Could no open output pipe '%s'", pData->f_fname);
+ errmsg.LogError(0, RS_RET_NO_FILE_ACCESS, "Could not open output pipe '%s'", pData->f_fname);
}
CODE_STD_FINALIZERparseSelectorAct
ENDparseSelectorAct