summaryrefslogtreecommitdiffstats
path: root/src/rfc2388.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rfc2388.c')
-rw-r--r--src/rfc2388.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/rfc2388.c b/src/rfc2388.c
index 7bdb3d7..13b6987 100644
--- a/src/rfc2388.c
+++ b/src/rfc2388.c
@@ -43,10 +43,6 @@
#include "sliding_buffer.h"
#include "rfc2388.h"
-#if DEBUG
-#include <syslog.h>
-#endif
-
#include "haserl.h"
void
@@ -233,9 +229,6 @@ mime_exec (mime_var_t * obj, char *fifo)
execv (av[0], av);
/* if we get here, we had a failure. Not much we can do.
* We are the child, so we can't even warn the parent */
-#ifdef DEBUG
- syslog (LOG_ERR, "execv of %s failed.", global.uploadhandler);
-#endif
fh = open (fifo, O_RDONLY);
while (read (fh, &c, 1))
{
@@ -311,10 +304,6 @@ mime_var_open_target (mime_var_t * obj)
die_with_message (NULL, NULL, g_err_msg[E_FILE_OPEN_FAIL], tmpname);
}
-/* add this to the list of things to unlink at the end */
-#include <syslog.h>
- openlog ("haserl", LOG_NDELAY, LOG_LOCAL0);
-
curtoken =
push_token_on_list (curtoken, NULL, tmpname, strlen (tmpname) + 1);
if (global.uploadlist == NULL)
@@ -322,8 +311,6 @@ mime_var_open_target (mime_var_t * obj)
global.uploadlist = curtoken;
}
- syslog (LOG_ERR, "global.uploadlist is %p", global.uploadlist);
-
}