summaryrefslogtreecommitdiffstats
path: root/omshell.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-08-08 08:20:06 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-08-08 08:20:06 +0000
commitfed254a29f88d12d18b3e8dd06ef126bed219ed0 (patch)
tree19c947b5a259c00597580f884721aee2e64173a2 /omshell.c
parent12c7e9ab4bba93e019f7f118d036d7dedcdf0037 (diff)
downloadrsyslog-fed254a29f88d12d18b3e8dd06ef126bed219ed0.tar.gz
rsyslog-fed254a29f88d12d18b3e8dd06ef126bed219ed0.tar.xz
rsyslog-fed254a29f88d12d18b3e8dd06ef126bed219ed0.zip
changed function name dprintf() to dbgprintf() as it conflicts with the
clib
Diffstat (limited to 'omshell.c')
-rw-r--r--omshell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/omshell.c b/omshell.c
index bc4ea56a..e9b72b42 100644
--- a/omshell.c
+++ b/omshell.c
@@ -85,7 +85,7 @@ CODESTARTdoAction
* modularization. We'll change that as we go ahead with modularization.
* rgerhards, 2007-07-20
*/
- dprintf("\n");
+ dbgprintf("\n");
if(execProg((uchar*) pData->progName, 1, ppString[0]) == 0)
logerrorSz("Executing program '%s' failed", (char*)pData->progName);
ENDdoAction
@@ -106,7 +106,7 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1)
switch (*p)
{
case '^': /* bkalkbrenner 2005-09-20: execute shell command */
- dprintf("exec\n");
+ dbgprintf("exec\n");
++p;
iRet = cflineParseFileName(p, (uchar*) pData->progName, *ppOMSR, 0, OMSR_NO_RQD_TPL_OPTS);
break;