> diff --git a/telnetd/telnetd.c b/telnetd/telnetd.c
> index f19a72a..22f1a96 100644
> --- a/telnetd/telnetd.c
> +++ b/telnetd/telnetd.c
> @@ -28,10 +28,6 @@
> #include <error.h>
> #include <libinetutils.h>
>
> -#if defined AUTHENTICATION || defined ENCRYPTION
> -# include <libtelnet/misc.h>
> -#endif
> -
> static void parse_authmode (char *str);
> static void parse_linemode (char *str);
> static void parse_debug_level (char *str);
I object on the above, undocumented change, since it will again
cause a warning which I removed recently:
telnetd.c:440: warning: implicit declaration of function 'auth_encrypt_init'
You are right, I screwed up. My intention was reverting the stupid
indentation change that snuck in by accident. Can you revert this for
me?