[9] in Kerberos-V5-bugs
Too many #includes required
daemon@ATHENA.MIT.EDU (Barr3y Jaspan)
Mon Jul 2 19:54:08 1990
Date: Mon, 2 Jul 90 19:53:57 -0400
From: "Barr3y Jaspan" <bjaspan@ATHENA.MIT.EDU>
To: krb5-bugs@ATHENA.MIT.EDU
From kinit.c:
#include <krb5/copyright.h>
#include <krb5/krb5.h>
#include <krb5/kdb.h> /* for TGTNAME */
#include <krb5/ext-proto.h>
#include <krb5/libos-proto.h>
#include <com_err.h>
This is too many header files for a typical Kerberos application to
have to include. #include <krb5/krb5.h> or something similarly
intuitive should include all the necessary headers for a standard
kerberos-using program.
Barr3y