summaryrefslogtreecommitdiffstats
path: root/eBones/krb/tkt_string.c
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>1995-09-07 21:39:00 +0000
committermarkm <markm@FreeBSD.org>1995-09-07 21:39:00 +0000
commit2539acf77b018acd7416a9857a14c466e55cd7e8 (patch)
tree96ff3578d62372822240f11a1567e45b880f3910 /eBones/krb/tkt_string.c
parenteed9438eb23b62f78af7685dc226228e2bf5c524 (diff)
downloadFreeBSD-src-2539acf77b018acd7416a9857a14c466e55cd7e8.zip
FreeBSD-src-2539acf77b018acd7416a9857a14c466e55cd7e8.tar.gz
Major cleanup of eBones code:
- Get all functions prototyped or at least defined before use. - Make code compile (Mostly) clean with -Wall set - Start to reduce the degree to which DES aka libdes is built in. - get all functions to the same uniform standard of definition: int foo(a, b) int a; int *b; { : } - fix numerous bugs exposed by above processes. Note - this replaces the previous work which used an unpopular function definition style.
Diffstat (limited to 'eBones/krb/tkt_string.c')
-rw-r--r--eBones/krb/tkt_string.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/eBones/krb/tkt_string.c b/eBones/krb/tkt_string.c
index bbbdbc5..d944833 100644
--- a/eBones/krb/tkt_string.c
+++ b/eBones/krb/tkt_string.c
@@ -15,8 +15,8 @@ static char *rcsid =
#endif /* lint */
#endif
-#include <stdio.h>
#include <stdlib.h>
+#include <stdio.h>
#include <sys/types.h>
#include <krb.h>
#include <string.h>
@@ -68,7 +68,9 @@ char *tkt_string()
* and return an undesired ticket file name until this routine is called.
*/
-void krb_set_tkt_string(char *val)
+void
+krb_set_tkt_string(val)
+char *val;
{
(void) strncpy(krb_ticket_string, val, sizeof(krb_ticket_string)-1);
OpenPOWER on IntegriCloud