summaryrefslogtreecommitdiff
path: root/lib/ZSendNot.c
diff options
context:
space:
mode:
authorGravatar Robert S. French <rfrench@mit.edu>1987-06-23 13:07:17 +0000
committerGravatar Robert S. French <rfrench@mit.edu>1987-06-23 13:07:17 +0000
commit085058de991ff5b160fee57af1fc3a7cf62ad8c3 (patch)
tree7552169261bbc76739624c918e570c12e5ed9c03 /lib/ZSendNot.c
parent92273597b39c15b0ce0f43cf9768106a1419c565 (diff)
KRB format
Diffstat (limited to 'lib/ZSendNot.c')
-rw-r--r--lib/ZSendNot.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ZSendNot.c b/lib/ZSendNot.c
index f971a9b..12f67c0 100644
--- a/lib/ZSendNot.c
+++ b/lib/ZSendNot.c
@@ -16,8 +16,9 @@
#include <zephyr/zephyr_internal.h>
-Code_t ZSendNotice(notice)
+Code_t ZSendNotice(notice,cert)
ZNotice_t *notice;
+ int cert;
{
Code_t retval;
char *buffer;
@@ -27,7 +28,7 @@ Code_t ZSendNotice(notice)
if (!buffer)
return (ENOMEM);
- if ((retval = ZFormatNotice(notice,buffer,Z_MAXPKTLEN,&len)) !=
+ if ((retval = ZFormatNotice(notice,buffer,Z_MAXPKTLEN,&len,cert)) !=
ZERR_NONE) {
free(buffer);
return (retval);