summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar John F. Carr <jfc@mit.edu>1991-06-18 09:44:32 +0000
committerGravatar John F. Carr <jfc@mit.edu>1991-06-18 09:44:32 +0000
commita3c423fbdde9a618bf4326405e7a980c537bb1ea (patch)
treec75f81c269210a288bc7b67338bffaaf7b6f070f
parentbb900da5cf796cd1104e0eb6d24c693460fc0002 (diff)
#endif lint -> #endif
-rw-r--r--lib/ZFmtAuth.c8
-rw-r--r--lib/ZSetFD.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/ZFmtAuth.c b/lib/ZFmtAuth.c
index 37c3c68..7815796 100644
--- a/lib/ZFmtAuth.c
+++ b/lib/ZFmtAuth.c
@@ -14,7 +14,7 @@
#ifndef lint
static char rcsid_ZFormatAuthenticNotice_c[] = "$Header$";
-#endif lint
+#endif
#include <zephyr/mit-copyright.h>
@@ -23,8 +23,8 @@ static char rcsid_ZFormatAuthenticNotice_c[] = "$Header$";
#ifdef KERBEROS
Code_t ZFormatAuthenticNotice(notice, buffer, buffer_len, len, session)
ZNotice_t *notice;
- char *buffer;
- int buffer_len;
+ register char *buffer;
+ register int buffer_len;
int *len;
C_Block session;
{
@@ -36,7 +36,7 @@ Code_t ZFormatAuthenticNotice(notice, buffer, buffer_len, len, session)
newnotice.z_auth = 1;
newnotice.z_authent_len = 0;
newnotice.z_ascii_authent = "";
-
+
if ((retval = Z_FormatRawHeader(&newnotice, buffer, buffer_len,
&hdrlen, &ptr)) != ZERR_NONE)
return (retval);
diff --git a/lib/ZSetFD.c b/lib/ZSetFD.c
index 5bacd07..40388f5 100644
--- a/lib/ZSetFD.c
+++ b/lib/ZSetFD.c
@@ -14,7 +14,7 @@
#ifndef lint
static char rcsid_ZSetFD_c[] = "$Header$";
-#endif lint
+#endif
#include <zephyr/mit-copyright.h>