--- help.c 2000/12/15 15:48:00 1.3
+++ help.c 2000/12/15 16:16:07 1.4
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/help.c,v $
- $Revision: 1.3 $
+ $Revision: 1.4 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -77,7 +77,6 @@
syslog(LOG_NOTICE, "List \"%s\" doesn't have a description.", param1);
fprintf(fh, "No description available.\n");
}
- AppendSignature(fh);
CloseMailer(fh);
}
else {
@@ -111,7 +110,6 @@
"mailing list server.", param1);
text_wordwrap(buffer, 75);
fprintf(fh, "%s\n", buffer);
- AppendSignature(fh);
CloseMailer(fh);
}
}
@@ -147,7 +145,6 @@
syslog(LOG_ERR, "There is no help file for Petidomo!");
fprintf(fh, "No help text available.\n");
}
- AppendSignature(fh);
CloseMailer(fh);
}
@@ -204,7 +201,6 @@
syslog(LOG_ERR, "There is no help file for Petidomo!");
fprintf(fh, "No help text available.\n");
}
- AppendSignature(fh);
CloseMailer(fh);
return 0;
}
|