removed some debug logging from rfc2ftn gate

This commit is contained in:
Michiel Broek
2002-02-24 22:13:13 +00:00
parent f708e66b94
commit 792ef4649a
3 changed files with 13 additions and 12 deletions

View File

@@ -76,7 +76,7 @@ rfcmsg *parsrfc(FILE *fp)
} else
cur->val = xstrcat(cur->val,buffer);
} else {
Syslog('M', "this is a header line");
// Syslog('M', "this is a header line");
if (cur) {
firstline=FALSE;
(cur->next) = (rfcmsg *)malloc(sizeof(rfcmsg));
@@ -109,7 +109,7 @@ rfcmsg *parsrfc(FILE *fp)
/* at least one non blank char */
(strspn(p+2, " \t\n") < strlen(p+2)) && (strspn(buffer,KWDCHARS) == (p-buffer))) {
*p='\0';
Syslog('M', "This is a regular header");
// Syslog('M', "This is a regular header");
cur->key = xstrcpy(buffer);
cur->val = xstrcpy(p+1);
} else {