Nitpicking on style(9) and whitespace.

Tested with:	md5(1)
This commit is contained in:
yar 2004-11-18 13:55:15 +00:00
parent 1ad65ec555
commit d46c701ed5

View File

@ -139,12 +139,12 @@ int stru; /* avoid C keyword */
int mode; int mode;
int usedefault = 1; /* for data transfers */ int usedefault = 1; /* for data transfers */
int pdata = -1; /* for passive mode */ int pdata = -1; /* for passive mode */
int readonly=0; /* Server is in readonly mode. */ int readonly = 0; /* Server is in readonly mode. */
int noepsv=0; /* EPSV command is disabled. */ int noepsv = 0; /* EPSV command is disabled. */
int noretr=0; /* RETR command is disabled. */ int noretr = 0; /* RETR command is disabled. */
int noguestretr=0; /* RETR command is disabled for anon users. */ int noguestretr = 0; /* RETR command is disabled for anon users. */
int noguestmkd=0; /* MKD command is disabled for anon users. */ int noguestmkd = 0; /* MKD command is disabled for anon users. */
int noguestmod=1; /* anon users may not modify existing files. */ int noguestmod = 1; /* anon users may not modify existing files. */
static volatile sig_atomic_t recvurg; static volatile sig_atomic_t recvurg;
sig_atomic_t transflag; sig_atomic_t transflag;
@ -176,17 +176,17 @@ static struct ftphost {
char remotehost[MAXHOSTNAMELEN]; char remotehost[MAXHOSTNAMELEN];
char *ident = NULL; char *ident = NULL;
static char ttyline[20]; static char ttyline[20];
char *tty = ttyline; /* for klogin */ char *tty = ttyline; /* for klogin */
#ifdef USE_PAM #ifdef USE_PAM
static int auth_pam(struct passwd**, const char*); static int auth_pam(struct passwd**, const char*);
pam_handle_t *pamh = NULL; pam_handle_t *pamh = NULL;
#endif #endif
static struct opie opiedata; static struct opie opiedata;
static char opieprompt[OPIE_CHALLENGE_MAX+1]; static char opieprompt[OPIE_CHALLENGE_MAX+1];
static int pwok; static int pwok;
char *pid_file = NULL; char *pid_file = NULL;
@ -222,7 +222,7 @@ char proctitle[LINE_MAX]; /* initial part of title */
#ifdef VIRTUAL_HOSTING #ifdef VIRTUAL_HOSTING
static void inithosts(void); static void inithosts(void);
static void selecthost(union sockunion *); static void selecthost(union sockunion *);
#endif #endif
static void ack(char *); static void ack(char *);
static void sigurg(int); static void sigurg(int);