Added include for <errno.h>
authorTheodore Tso <tytso@mit.edu>
Fri, 26 Feb 1993 20:34:20 +0000 (20:34 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 26 Feb 1993 20:34:20 +0000 (20:34 +0000)
Backup definition for MAXPATHLEN

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2504 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/store_mkey.c

index ab08d9b9ad8a80ec75d09073e08381684577abdb..2f740dabd7f744b30d5bc0144dccccf01341804b 100644 (file)
@@ -31,6 +31,7 @@ static char rcsid_store_mkey_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
+#include <errno.h>
 #include <krb5/krb5.h>
 #include <krb5/kdb.h>
 #include <krb5/los-proto.h>
@@ -38,6 +39,12 @@ static char rcsid_store_mkey_c[] =
 #include "kdbint.h"
 #include <krb5/sysincl.h>              /* for MAXPATHLEN */
 
+/* Just in case sysincl.h didn't get it */
+
+#ifndef MAXPATHLEN
+#define MAXPATHLEN 1024
+#endif
+
 /*
  * Put the KDC database master key into a file.  If keyfile is NULL,
  * then a default name derived from the principal name mname is used.