summaryrefslogtreecommitdiff
path: root/lib/ZParseNot.c
diff options
context:
space:
mode:
authorGravatar Robert S. French <rfrench@mit.edu>1987-08-01 11:27:17 +0000
committerGravatar Robert S. French <rfrench@mit.edu>1987-08-01 11:27:17 +0000
commitd6a97078624a680d8fc8670db4b17941d2003562 (patch)
treef0f29af53e31ade13962bf0122536f1ee59bab90 /lib/ZParseNot.c
parente3bfca3ee22a86d6587b111af7412cd73b288242 (diff)
Changed to handle new protocol format
Diffstat (limited to 'lib/ZParseNot.c')
-rw-r--r--lib/ZParseNot.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/ZParseNot.c b/lib/ZParseNot.c
index 6aeebc9..25610b4 100644
--- a/lib/ZParseNot.c
+++ b/lib/ZParseNot.c
@@ -20,15 +20,12 @@ static char rcsid_ZParseNotice_c[] = "$Header$";
#include <zephyr/zephyr_internal.h>
-Code_t ZParseNotice(buffer,len,notice,auth,from)
+Code_t ZParseNotice(buffer,len,notice)
ZPacket_t buffer;
int len;
ZNotice_t *notice;
- int *auth;
- struct sockaddr_in *from;
{
extern int ZCheckAuthentication();
- return (Z_InternalParseNotice(buffer,len,notice,auth,from,
- ZCheckAuthentication));
+ return (Z_InternalParseNotice(buffer,len,notice));
}