summaryrefslogtreecommitdiffhomepage
path: root/auth.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2019-03-20 23:47:25 +0800
committerMatt Johnston <matt@ucc.asn.au>2019-03-20 23:47:25 +0800
commit01cd1bd11f50fc2cdb6b4e5194daab36f344c8df (patch)
tree7aaeceee20c505871e97a3a244b7c24d0ff17947 /auth.h
parentf6df3e1fec0453fdf79b3da13261f3028d7accd9 (diff)
Increase MAX_USERNAME_LEN to 100
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth.h b/auth.h
index 7126a4a..4bdb359 100644
--- a/auth.h
+++ b/auth.h
@@ -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)