diff options
author | zciendor <37557036+zciendor@users.noreply.github.com> | 2020-03-14 14:21:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 22:21:01 +0800 |
commit | 002b79e2f9d2c94908817a5c7e9ff4b843b37e0d (patch) | |
tree | 59647b1cf121651e589eed9ed78848d963fa2738 /default_options.h | |
parent | 3d12521735e7ef7e48be217af0f27d68e23050a7 (diff) |
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`.
Diffstat (limited to 'default_options.h')
-rw-r--r-- | default_options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default_options.h b/default_options.h index 5b232dd..bafbb07 100644 --- a/default_options.h +++ b/default_options.h @@ -179,7 +179,7 @@ group1 in Dropbear server too */ #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. |