=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ftp/ftp_var.h,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/ftp/ftp_var.h 1997/03/14 04:32:16 1.9 --- src/usr.bin/ftp/ftp_var.h 1997/03/21 20:59:30 1.10 *************** *** 1,5 **** ! /* $OpenBSD: ftp_var.h,v 1.9 1997/03/14 04:32:16 millert Exp $ */ ! /* $NetBSD: ftp_var.h,v 1.14 1997/03/13 06:23:19 lukem Exp $ */ /* * Copyright (c) 1985, 1989, 1993, 1994 --- 1,5 ---- ! /* $OpenBSD: ftp_var.h,v 1.10 1997/03/21 20:59:30 millert Exp $ */ ! /* $NetBSD: ftp_var.h,v 1.15 1997/03/14 01:39:38 christos Exp $ */ /* * Copyright (c) 1985, 1989, 1993, 1994 *************** *** 43,51 **** #include #include ! #ifndef SMALLFTP #include ! #endif /* !SMALLFTP */ #include "stringlist.h" #include "extern.h" --- 43,51 ---- #include #include ! #ifndef SMALL #include ! #endif /* !SMALL */ #include "stringlist.h" #include "extern.h" *************** *** 109,122 **** int retry_connect; /* retry connect if failed */ int ttywidth; /* width of tty */ ! #ifndef SMALLFTP int editing; /* command line editing enabled */ EditLine *el; /* editline(3) status structure */ History *hist; /* editline(3) history structure */ char *cursor_pos; /* cursor position we're looking for */ int cursor_argc; /* location of cursor in margv */ int cursor_argo; /* offset of cursor in margv[cursor_argc] */ ! #endif /* !SMALLFTP */ off_t bytes; /* current # of bytes read */ off_t filesize; /* size of file being transferred */ --- 109,122 ---- int retry_connect; /* retry connect if failed */ int ttywidth; /* width of tty */ ! #ifndef SMALL int editing; /* command line editing enabled */ EditLine *el; /* editline(3) status structure */ History *hist; /* editline(3) history structure */ char *cursor_pos; /* cursor position we're looking for */ int cursor_argc; /* location of cursor in margv */ int cursor_argo; /* offset of cursor in margv[cursor_argc] */ ! #endif /* !SMALL */ off_t bytes; /* current # of bytes read */ off_t filesize; /* size of file being transferred */ *************** *** 151,159 **** char c_bell; /* give bell when command completes */ char c_conn; /* must be connected to use command */ char c_proxy; /* proxy server may execute */ ! #ifndef SMALLFTP char *c_complete; /* context sensitive completion list */ ! #endif /* !SMALLFTP */ void (*c_handler) __P((int, char **)); /* function to call */ }; --- 151,159 ---- char c_bell; /* give bell when command completes */ char c_conn; /* must be connected to use command */ char c_proxy; /* proxy server may execute */ ! #ifndef SMALL char *c_complete; /* context sensitive completion list */ ! #endif /* !SMALL */ void (*c_handler) __P((int, char **)); /* function to call */ };