diff options
author | dd <dd@FreeBSD.org> | 2001-06-13 00:06:42 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-13 00:06:42 +0000 |
commit | 61b8c1c1c868244cc97afa26e11bbf130081a604 (patch) | |
tree | a54c280dc97c78fad5aefe2b1363d0242cfbd29d /libexec | |
parent | bdb89dc451cdb48e9033c565caed65888d5fe21e (diff) | |
download | FreeBSD-src-61b8c1c1c868244cc97afa26e11bbf130081a604.zip FreeBSD-src-61b8c1c1c868244cc97afa26e11bbf130081a604.tar.gz |
Move the definition of epsvall out of #ifdef VIRTUAL_HOSTING so that
the latter is not required for ftpd to compile.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ftpd/ftpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index cfa1a43..bd57cee 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -160,11 +160,11 @@ off_t byte_count; int defumask = CMASK; /* default umask value */ char tmpline[7]; char *hostname; +int epsvall = 0; + #ifdef VIRTUAL_HOSTING char *ftpuser; -int epsvall = 0; - static struct ftphost { struct ftphost *next; struct addrinfo *hostinfo; |