summaryrefslogtreecommitdiffstats
path: root/src/clients/klist
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-05-04 00:28:53 +0000
committerChris Provenzano <proven@mit.edu>1995-05-04 00:28:53 +0000
commitf37728a909ae5f60c4203da54830fc840c6b4042 (patch)
treead6d362977556c919c1bb24eddd101947e88ba00 /src/clients/klist
parent0468a1294476e8099d226a2f8e613087e9d9840d (diff)
downloadkrb5-f37728a909ae5f60c4203da54830fc840c6b4042.tar.gz
krb5-f37728a909ae5f60c4203da54830fc840c6b4042.tar.xz
krb5-f37728a909ae5f60c4203da54830fc840c6b4042.zip
* klist.c : #include <string.h>, a must for prototypes of various
string routines on systems where int != void *. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5714 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/clients/klist')
-rw-r--r--src/clients/klist/ChangeLog6
-rw-r--r--src/clients/klist/klist.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/src/clients/klist/ChangeLog b/src/clients/klist/ChangeLog
index 7b80d3892..88267db16 100644
--- a/src/clients/klist/ChangeLog
+++ b/src/clients/klist/ChangeLog
@@ -1,3 +1,9 @@
+
+Wed May 03 20:20:48 1995 Chris Provenzano (proven@mit.edu)
+
+ * klist.c : #include <string.h>, a must for prototypes of various
+ string routines on systems where int != void *.
+
Thu Mar 2 12:31:29 1995 Theodore Y. Ts'o <tytso@dcl>
* Makefile.in (ISODELIB): Remove reference to $(ISODELIB).
diff --git a/src/clients/klist/klist.c b/src/clients/klist/klist.c
index e59b24ce9..21dc4dc0c 100644
--- a/src/clients/klist/klist.c
+++ b/src/clients/klist/klist.c
@@ -24,9 +24,10 @@
* List out the contents of your credential cache.
*/
-#include <stdio.h>
#include "krb5.h"
#include "com_err.h"
+#include <string.h>
+#include <stdio.h>
#include <time.h>
extern int optind;