diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | gssapi.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -172,6 +172,7 @@ fetchmail 6.3.0 (not yet released officially): wait for the user to enter a password when the user doesn't even see the prompt. Reported by Michal Marek. Matthias Andree. * Write RFC-compliant BSMTP envelopes. Reported by Nico Golde. Matthias Andree. +* Fix --with-gssapi compilation problem. Simon Josefsson. (MA) # INTERNAL CHANGES * Switched to automake. Matthias Andree. @@ -174,7 +174,7 @@ int do_gssauth(int sock, char *command, char *service, char *hostname, char *use buf_size = htonl(buf_size); /* do as they do... only matters if we do enc */ memcpy(buf1, &buf_size, 4); buf1[0] = GSSAUTH_P_NONE; - strlcpy(buf1+4, username, sizeof(buf) - 4); /* server decides if princ is user */ + strlcpy(buf1+4, username, sizeof(buf1) - 4); /* server decides if princ is user */ request_buf.length = 4 + strlen(username) + 1; request_buf.value = buf1; maj_stat = gss_wrap(&min_stat, context, 0, GSS_C_QOP_DEFAULT, &request_buf, |