From: Simon Wilkinson Date: Wed, 11 Nov 2009 10:32:59 +0000 (+0000) Subject: Prototype kalog_Init X-Git-Tag: openafs-devel-1_5_67~60 X-Git-Url: http://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=748eaf804119a632204f0c6cce5e07ec4c372c13 Prototype kalog_Init Prototype the kalog_Init function in kauth_internal.h, and remove the warning inhibition from kaserver.c Change-Id: Ic48d199126629f1c0c2e498081be97901678ec70 Reviewed-on: http://gerrit.openafs.org/812 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/README.WARNINGS b/README.WARNINGS index 409bdd9..ad67218 100644 --- a/README.WARNINGS +++ b/README.WARNINGS @@ -56,7 +56,6 @@ butc/tcmain.c : all : prototypes / signed warnings (XXX) butc/recoverDb.c : all : pointer target issues (XXX) butc/tcudbprocs.c : all : ubik_Call comerr/error_table.c : all : Autogenerated file with unused labels -kauth/kaserver.c : all : ExtendedCellInfo kauth/admin_tools.c : all : ubik_Call nonsense kauth/authclient.c : strict-proto : ubik_Call nonsense : all : ubik_Call nonsense diff --git a/src/kauth/Makefile.in b/src/kauth/Makefile.in index 455d1ae..934a4d5 100644 --- a/src/kauth/Makefile.in +++ b/src/kauth/Makefile.in @@ -88,7 +88,6 @@ kaserver: kautils.o kalocalcell.o kadatabase.o kaprocs.o kalog.o kauth.ss.o kaut ${CC} ${LDFLAGS} -o kaserver kaserver.o kautils.o kalocalcell.o kadatabase.o krb_udp.o kaprocs.o kalog.o kauth.ss.o kauth.xdr.o kaaux.o kaauxdb.o $(LIBS) ${XLIBS} ${TOP_LIBDIR}/libaudit.a kaserver.o: kaserver.c ${INCLS} AFS_component_version_number.o - $(CC) $(CFLAGS) @CFLAGS_NOERROR@ -c $< kautils.o: kautils.c ${INCLS} diff --git a/src/kauth/kauth_internal.h b/src/kauth/kauth_internal.h index 795efc6..f80fc4d 100644 --- a/src/kauth/kauth_internal.h +++ b/src/kauth/kauth_internal.h @@ -41,6 +41,9 @@ extern afs_int32 ka_NewKey(struct ubik_trans *tt, afs_int32 tentryaddr, extern int name_instance_legal(char *name, char *instance); +/* kalog.c */ +extern void kalog_Init(void); + /* kaprocs.c */ struct ubik_trans; extern afs_int32 InitAuthServ(struct ubik_trans **, int, int *);