diff options
author | Matt Johnston <matt@ucc.asn.au> | 2019-03-20 22:57:06 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2019-03-20 22:57:06 +0800 |
commit | 0afcfafbb993c856db65e033569539f66491cc1b (patch) | |
tree | 9feb51d6f13f30353c3a5830bd70938517af90fa /default_options.h | |
parent | 0af22aa8e43722082947bb48fa9ec2990f702c49 (diff) |
Add a sanity check for DROPBEAR_SVR_MULTIUSER==0 mode
Diffstat (limited to 'default_options.h')
-rw-r--r-- | default_options.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/default_options.h b/default_options.h index 7365d2c..9000fcc 100644 --- a/default_options.h +++ b/default_options.h @@ -196,7 +196,9 @@ group1 in Dropbear server too */ * authorized_keys file into account */ #define DROPBEAR_SVR_PUBKEY_OPTIONS 1 -/* Disable if your kernel does not have multiple user support */ +/* Set this to 0 if your system does not have multiple user support. + (Linux kernel CONFIG_MULTIUSER option) + The resulting binary will not run on a normal system. */ #define DROPBEAR_SVR_MULTIUSER 1 /* Client authentication options */ |