fix name of copyright file.
authorJohn Kohl <jtkohl@mit.edu>
Thu, 19 Apr 1990 17:11:54 +0000 (17:11 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 19 Apr 1990 17:11:54 +0000 (17:11 +0000)
fix up #ifdef's & #endifs

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

src/lib/krb5/os/net_read.c
src/lib/krb5/os/net_write.c

index 153ecfe06b58ce0c615141930744e550c90ef6c0..06e8ec755554bec071c5fc8f0c6e990bd5bf5768 100644 (file)
@@ -5,18 +5,19 @@
  * Copyright 1987, 1988, 1990 by the Massachusetts Institute of Technology.
  *
  * For copying and distribution information, please see the file
- * <krb5/mit-copyright.h>.
+ * <krb5/copyright.h>.
  */
 
-#ifndef        lint
+#if !defined(lint) && !defined(SABER)
 static char rcsid_net_read_c[] =
 "$Header$";
-#endif lint
+#endif /* !lint & !SABER */
 
-#include <krb5/mit-copyright.h>
+#include <krb5/copyright.h>
+#include <krb5/ext-proto.h>
 
 /*
- * krb_net_read() reads from the file descriptor "fd" to the buffer
+ * krb5_net_read() reads from the file descriptor "fd" to the buffer
  * "buf", until either 1) "len" bytes have been read or 2) cannot
  * read anymore from "fd".  It returns the number of bytes read
  * or a read() error.  (The calling interface is identical to
index cb64446af5abb43a4b47b8ff87deac228d7b09e1..834b30393d6c86685dfd1ec813ffa5392ae2201e 100644 (file)
@@ -5,18 +5,19 @@
  * Copyright 1987, 1988, 1990 by the Massachusetts Institute of Technology.
  *
  * For copying and distribution information, please see the file
- * <krb5/mit-copyright.h>.
+ * <krb5/copyright.h>.
  */
 
-#ifndef        lint
+#if !defined(lint) && !defined(SABER)
 static char rcsid_net_write_c[] =
 "$Header$";
-#endif lint
+#endif /* !lint & !SABER */
 
-#include <krb5/mit-copyright.h>
+#include <krb5/copyright.h>
+#include <krb5/ext-proto.h>
 
 /*
- * krb_net_write() writes "len" bytes from "buf" to the file
+ * krb5_net_write() writes "len" bytes from "buf" to the file
  * descriptor "fd".  It returns the number of bytes written or
  * a write() error.  (The calling interface is identical to
  * write(2).)