diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-08 08:20:06 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-08 08:20:06 +0000 |
commit | fed254a29f88d12d18b3e8dd06ef126bed219ed0 (patch) | |
tree | 19c947b5a259c00597580f884721aee2e64173a2 /srUtils.c | |
parent | 12c7e9ab4bba93e019f7f118d036d7dedcdf0037 (diff) | |
download | rsyslog-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 'srUtils.c')
-rwxr-xr-x | srUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -174,7 +174,7 @@ int execProg(uchar *program, int bWait, uchar *arg) int pid; int sig; - dprintf("exec program '%s' with param '%s'\n", program, arg); + dbgprintf("exec program '%s' with param '%s'\n", program, arg); pid = fork(); if (pid < 0) { return 0; @@ -189,7 +189,7 @@ int execProg(uchar *program, int bWait, uchar *arg) * loop. At some time, we may * reconsider this behaviour. */ - dprintf("could not wait on child after executing '%s'", + dbgprintf("could not wait on child after executing '%s'", (char*)program); } return pid; |