summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-07-10 19:39:52 +1000
committerDamien Miller <djm@mindrot.org>2018-07-10 19:39:52 +1000
commit120a1ec74e8d9d29f4eb9a27972ddd22351ddef9 (patch)
tree52308557de781f1d8ffb083369e0c209bc305c02 /sshd.c
parent0f3958c1e6ffb8ea4ba27e2a97a00326fce23246 (diff)
Adapt portable to legacy buffer API removal
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 81f694aec..ef1dbd170 100644
--- a/sshd.c
+++ b/sshd.c
@@ -2111,7 +2111,7 @@ main(int ac, char **av)
2111 /* allocate authentication context */ 2111 /* allocate authentication context */
2112 authctxt = xcalloc(1, sizeof(*authctxt)); 2112 authctxt = xcalloc(1, sizeof(*authctxt));
2113 2113
2114 authctxt->loginmsg = &loginmsg; 2114 authctxt->loginmsg = loginmsg;
2115 2115
2116 /* XXX global for cleanup, access from other modules */ 2116 /* XXX global for cleanup, access from other modules */
2117 the_authctxt = authctxt; 2117 the_authctxt = authctxt;