Avoid <krb5/...> includes
authorJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 10:01:05 +0000 (10:01 +0000)
committerJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 10:01:05 +0000 (10:01 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5026 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/sample/ChangeLog [new file with mode: 0644]
src/appl/sample/sample.h
src/appl/sample/sclient/ChangeLog
src/appl/sample/sclient/sclient.c
src/appl/sample/sserver/ChangeLog
src/appl/sample/sserver/sserver.c

diff --git a/src/appl/sample/ChangeLog b/src/appl/sample/ChangeLog
new file mode 100644 (file)
index 0000000..6ab3b9d
--- /dev/null
@@ -0,0 +1,4 @@
+Tue Feb 28 01:58:05 1995  John Gilmore  (gnu at toad.com)
+
+       * sample.h:  Avoid <krb5/...> includes.
+
index 8d3f0227de240e0d58287d1115d320e0cd23bd95..aac9ad13e891c00204e65010a64867873a520072 100644 (file)
@@ -23,8 +23,6 @@
  * Common definitions for the sample client/server.
  */
 
-#include <krb5/copyright.h>
-
 #ifndef KRB5_SAMPLE__
 #define KRB5_SAMPLE__
 
index 48dcd45e8a17c2730aea0fd6033259246e3a1b36..5be255ce5bdcd7cc1bca6cd55a8876d46f11ccfc 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 01:58:39 1995  John Gilmore  (gnu at toad.com)
+
+       * sclient.c:  Avoid <krb5/...> and <com_err.h> includes.
+
 Tue Feb 14 15:30:55 1995 Chris Provenzano  (proven@mit.edu)
 
         * kadmin.c Call krb5_sendauth() with new calling convention.
index fe31d9fb997b4b04368abeeff09742c03e6a0ed3..ec4c5a1302d0b0b0fbece9b21d335be22a373da6 100644 (file)
  * Usage: sample_client hostname
  */
 
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-#include <krb5/los-proto.h>
+#include "krb5.h"
+#include "com_err.h"
 
 #include <stdio.h>
 #include <ctype.h>
-#include <com_err.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
index 019ad3894d44de80cd60c6996d6a10b67ad5a2ce..64c8ab6a8afd92404cfe5281652b8796b3981e06 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 01:59:17 1995  John Gilmore  (gnu at toad.com)
+
+       * sserver.c:  Avoid <krb5/...> and <com_err.h> includes.
+
 Mon Oct  3 19:16:14 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * Makefile.in: Use $(srcdir) to find manual page for make install.
index ed5e4bb8f5e2c17d72f599fabfbe74b5923326dd..4c69a1d6d7bfbc5fe2a813971364700d6628f7a2 100644 (file)
  * client (this will be correct if this server is started by inetd).
  */
 
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
-#include <krb5/los-proto.h>
+#include "krb5.h"
+#include "com_err.h"
 
+#include <stdio.h>
 #include <ctype.h>
-#include <com_err.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>