> On Nov 1, 2016, at 2:18 PM, Kurt Lidl <[email protected]> wrote:
>
> Author: lidl
> Date: Tue Nov 1 18:18:09 2016
> New Revision: 308175
> URL: https://svnweb.freebsd.org/changeset/base/308175
>
> Log:
> Revisit blacklistd support in ftpd
This commit is breaking buildworld for me with WITHOUT_BLACKLIST=y in src.conf :
--- ftpd.o ---
/usr/src/libexec/ftpd/ftpd.c:656:2: warning: implicit declaration of function
'BLACKLIST_INIT' is invalid in C99 [-Wimplicit-function-declaration]
BLACKLIST_INIT();
^
/usr/src/libexec/ftpd/ftpd.c:1432:4: warning: implicit declaration of function
'BLACKLIST_NOTIFY' is invalid in C99 [-Wimplicit-function-declaration]
BLACKLIST_NOTIFY(BLACKLIST_AUTH_FAIL, STDIN_FILENO,
"Login incorrect");
^
/usr/src/libexec/ftpd/ftpd.c:1432:21: error: use of undeclared identifier
'BLACKLIST_AUTH_FAIL'; did you mean 'BLACKLIST_NOTIFY'?
BLACKLIST_NOTIFY(BLACKLIST_AUTH_FAIL, STDIN_FILENO,
"Login incorrect");
^~~~~~~~~~~~~~~~~~~
BLACKLIST_NOTIFY
/usr/src/libexec/ftpd/ftpd.c:1432:4: note: 'BLACKLIST_NOTIFY' declared here
BLACKLIST_NOTIFY(BLACKLIST_AUTH_FAIL, STDIN_FILENO,
"Login incorrect");
^
/usr/src/libexec/ftpd/ftpd.c:1450:21: error: use of undeclared identifier
'BLACKLIST_AUTH_OK'; did you mean 'BLACKLIST_NOTIFY'?
BLACKLIST_NOTIFY(BLACKLIST_AUTH_OK, STDIN_FILENO,
"Login successful");
^~~~~~~~~~~~~~~~~
BLACKLIST_NOTIFY
/usr/src/libexec/ftpd/ftpd.c:1432:4: note: 'BLACKLIST_NOTIFY' declared here
BLACKLIST_NOTIFY(BLACKLIST_AUTH_FAIL, STDIN_FILENO,
"Login incorrect");
^
2 warnings and 2 errors generated.
*** [ftpd.o] Error code 1
Matteo
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"