Module Name: src
Committed By: martin
Date: Tue May 16 16:23:45 UTC 2023
Modified Files:
src/usr.bin/ftp [netbsd-10]: ssl.c
Log Message:
Pull up following revision(s) (requested by lukem in ticket #174):
usr.bin/ftp/ssl.c: revision 1.14
Simplify includes
Include "ftp_var.h" instead of various system headers and "extern.h".
To generate a diff of this commit:
cvs rdiff -u -r1.12.2.1 -r1.12.2.2 src/usr.bin/ftp/ssl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/ftp/ssl.c
diff -u src/usr.bin/ftp/ssl.c:1.12.2.1 src/usr.bin/ftp/ssl.c:1.12.2.2
--- src/usr.bin/ftp/ssl.c:1.12.2.1 Tue May 16 16:16:00 2023
+++ src/usr.bin/ftp/ssl.c Tue May 16 16:23:45 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: ssl.c,v 1.12.2.1 2023/05/16 16:16:00 martin Exp $ */
+/* $NetBSD: ssl.c,v 1.12.2.2 2023/05/16 16:23:45 martin Exp $ */
/*-
* Copyright (c) 1998-2004 Dag-Erling Coïdan Smørgrav
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: ssl.c,v 1.12.2.1 2023/05/16 16:16:00 martin Exp $");
+__RCSID("$NetBSD: ssl.c,v 1.12.2.2 2023/05/16 16:23:45 martin Exp $");
#endif
#include <errno.h>
@@ -63,11 +63,7 @@ __RCSID("$NetBSD: ssl.c,v 1.12.2.1 2023/
#endif
#include "ssl.h"
-
-#include <stringlist.h>
-#include <histedit.h>
-#include <sys/poll.h>
-#include "extern.h"
+#include "ftp_var.h"
extern int quit_time, verbose, ftp_debug;
extern FILE *ttyout;