diff options
author | Matt Johnston <matt@ucc.asn.au> | 2019-03-20 23:47:25 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2019-03-20 23:47:25 +0800 |
commit | 01cd1bd11f50fc2cdb6b4e5194daab36f344c8df (patch) | |
tree | 7aaeceee20c505871e97a3a244b7c24d0ff17947 | |
parent | f6df3e1fec0453fdf79b3da13261f3028d7accd9 (diff) |
Increase MAX_USERNAME_LEN to 100
-rw-r--r-- | auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ char* getpass_or_cancel(const char* prompt); void cli_auth_pubkey_cleanup(void); -#define MAX_USERNAME_LEN 25 /* arbitrary for the moment */ +#define MAX_USERNAME_LEN 100 /* arbitrary for the moment */ #define AUTH_TYPE_NONE 1 #define AUTH_TYPE_PUBKEY (1 << 1) |