summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/init.c2
-rw-r--r--src/misc.c40
-rw-r--r--src/process.c8
3 files changed, 25 insertions, 25 deletions
diff --git a/src/init.c b/src/init.c
index b8ae80903..6f78e018c 100644
--- a/src/init.c
+++ b/src/init.c
@@ -328,7 +328,7 @@ static int parse_options(int ac, char **av)
} else if (strcmp(s, "nothird") == 0) {
nothird = 1;
} else if (strcmp(s, "protocoldebug") == 0) {
- protocoldebug = 1;
+ protocoldebug = 1;
} else if (strcmp(s, "support") == 0) {
nofork = 1;
debug++;
diff --git a/src/misc.c b/src/misc.c
index 68db04148..cf684870c 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -751,26 +751,26 @@ char *myStrSubString(const char *src, int start, int end)
/*************************************************************************/
-void protocol_debug(char *source, char *cmd, int argc, char **argv)
-{
- int i;
-
- if (protocoldebug) {
- if (source)
- alog("debug: Source %s", source);
- if (cmd)
- alog("debug: Token %s", cmd);
- if (argc) {
- for (i = 0; i < argc; i++) {
- alog("debug: av[%d] = %s", i, argv[i]);
- }
- } else {
- alog("debug: av[0] = NULL");
- }
- }
- return;
-}
-
+void protocol_debug(char *source, char *cmd, int argc, char **argv)
+{
+ int i;
+
+ if (protocoldebug) {
+ if (source)
+ alog("debug: Source %s", source);
+ if (cmd)
+ alog("debug: Token %s", cmd);
+ if (argc) {
+ for (i = 0; i < argc; i++) {
+ alog("debug: av[%d] = %s", i, argv[i]);
+ }
+ } else {
+ alog("debug: av[0] = NULL");
+ }
+ }
+ return;
+}
+
/*************************************************************************/
/**
diff --git a/src/process.c b/src/process.c
index a89804992..2834d0794 100644
--- a/src/process.c
+++ b/src/process.c
@@ -232,10 +232,10 @@ void process()
s = buf + strlen(buf);
strscpy(cmd, buf, sizeof(cmd));
ac = split_buf(s, &av, 1);
- if (protocoldebug) {
- protocol_debug(source, cmd, ac, av);
- }
- if (mod_current_buffer) {
+ if (protocoldebug) {
+ protocol_debug(source, cmd, ac, av);
+ }
+ if (mod_current_buffer) {
free(mod_current_buffer);
}
/* fix to moduleGetLastBuffer() bug 296 */