diff options
author | maxim <maxim@FreeBSD.org> | 2002-03-11 11:48:55 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2002-03-11 11:48:55 +0000 |
commit | 1459c4fc9487e23b05f2c65b21db43ab555f3639 (patch) | |
tree | f5a7c50f81430c4248fadbc2d75fac772d4c94a8 /libexec | |
parent | 3be0ca68540cb5c26fce84dde487610fa305bbe2 (diff) | |
download | FreeBSD-src-1459c4fc9487e23b05f2c65b21db43ab555f3639.zip FreeBSD-src-1459c4fc9487e23b05f2c65b21db43ab555f3639.tar.gz |
Remove duplicated yacc nonterminals declarations, sort includes.
No functional changes from rev. 1.31.
Reviewed by: ru
Approved by: ru
MFC after: 1 week
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ftpd/ftpcmd.y | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libexec/ftpd/ftpcmd.y b/libexec/ftpd/ftpcmd.y index 60287fb..d48b646 100644 --- a/libexec/ftpd/ftpcmd.y +++ b/libexec/ftpd/ftpcmd.y @@ -58,6 +58,8 @@ static const char rcsid[] = #include <ctype.h> #include <errno.h> #include <glob.h> +#include <libutil.h> +#include <md5.h> #include <netdb.h> #include <pwd.h> #include <signal.h> @@ -67,8 +69,6 @@ static const char rcsid[] = #include <syslog.h> #include <time.h> #include <unistd.h> -#include <libutil.h> -#include <md5.h> #include "extern.h" @@ -137,8 +137,7 @@ extern int epsvall; %token <i> NUMBER %type <i> check_login octal_number byte_size -%type <i> check_login_ro octal_number byte_size -%type <i> check_login_epsv octal_number byte_size +%type <i> check_login_ro check_login_epsv %type <i> struct_code mode_code type_code form_code %type <s> pathstring pathname password username %type <s> ALL |