# HG changeset patch # User zciendor <37557036+zciendor@users.noreply.github.com> # Date 1584195661 0 # Node ID 26e07f7f682aa57fd68fe937a9221d8bdc3035a9 # Parent d32bcb5c557d213333e940e559d9487e07ba7171 MOTD enabled by default as the manpage says (#87) The man page (https://github.com/mkj/dropbear/blob/master/dropbear.8) says MOTD will be printed by default for any login shell, but it was disabled at compile time. Probably happened by accident when this code was moved from `options.h` to `default_options.h`. diff -r d32bcb5c557d -r 26e07f7f682a default_options.h --- a/default_options.h Wed Mar 11 21:09:45 2020 +0500 +++ b/default_options.h Sat Mar 14 14:21:01 2020 +0000 @@ -179,7 +179,7 @@ #define DO_HOST_LOOKUP 0 /* Whether to print the message of the day (MOTD). */ -#define DO_MOTD 0 +#define DO_MOTD 1 #define MOTD_FILENAME "/etc/motd" /* Authentication Types - at least one required.