summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2000-03-16 15:24:45 +0000
committerEzra Peisach <epeisach@mit.edu>2000-03-16 15:24:45 +0000
commit4a2449d55d3527a8ed9ef73de83cba2ae149094b (patch)
treedcf3a48242b18368dca274893545a11c8440f3a2 /src/lib
parent38037332d7af42124646c268874e0833bd8ec30e (diff)
downloadkrb5-4a2449d55d3527a8ed9ef73de83cba2ae149094b.tar.gz
krb5-4a2449d55d3527a8ed9ef73de83cba2ae149094b.tar.xz
krb5-4a2449d55d3527a8ed9ef73de83cba2ae149094b.zip
* cr_tkt.c (krb_cr_tkt_int): Add static prototype.
* decomp_tkt.c: (dcmp_tkt_int): Add static prototype git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12125 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/krb4/ChangeLog5
-rw-r--r--src/lib/krb4/cr_tkt.c7
-rw-r--r--src/lib/krb4/decomp_tkt.c6
3 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/krb4/ChangeLog b/src/lib/krb4/ChangeLog
index 187505b549..41d93ad78b 100644
--- a/src/lib/krb4/ChangeLog
+++ b/src/lib/krb4/ChangeLog
@@ -1,3 +1,8 @@
+2000-03-12 Ezra Peisach <epeisach@mit.edu>
+
+ * cr_tkt.c (krb_cr_tkt_int): Add static prototype.
+ * decomp_tkt.c: (dcmp_tkt_int): Add static prototype
+
1999-10-26 Tom Yu <tlyu@mit.edu>
* Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
diff --git a/src/lib/krb4/cr_tkt.c b/src/lib/krb4/cr_tkt.c
index a8224f879a..0293e105f7 100644
--- a/src/lib/krb4/cr_tkt.c
+++ b/src/lib/krb4/cr_tkt.c
@@ -14,6 +14,13 @@
#include "prot.h"
#include <string.h>
#include <krb5.h>
+
+static int krb_cr_tkt_int PROTOTYPE((KTEXT tkt, unsigned char flags,
+ char *pname, char *pinstance,
+ char *prealm, long paddress,
+ char *session, short life, long time_sec,
+ char *sname, char *sinstance,
+ C_Block key, krb5_keyblock *k5key));
/*
* Create ticket takes as arguments information that should be in a
* ticket, and the KTEXT object in which the ticket should be
diff --git a/src/lib/krb4/decomp_tkt.c b/src/lib/krb4/decomp_tkt.c
index 03398acd58..04d3298ade 100644
--- a/src/lib/krb4/decomp_tkt.c
+++ b/src/lib/krb4/decomp_tkt.c
@@ -19,6 +19,12 @@
extern int krb_debug;
#endif
+static int dcmp_tkt_int PROTOTYPE((KTEXT tkt, unsigned char *flags,
+ char *pname, char *pinstance, char *prealm,
+ unsigned KRB4_32 *paddress, C_Block session,
+ int *life, unsigned KRB4_32 *time_sec,
+ char *sname, char *sinstance, C_Block key,
+ Key_schedule key_s, krb5_keyblock *k5key));
/*
* This routine takes a ticket and pointers to the variables that
* should be filled in based on the information in the ticket. It