diff options
author | Colin Watson <cjwatson@debian.org> | 2013-09-14 15:56:58 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-09-14 15:56:58 +0100 |
commit | 74e339b8f8936bc0d985e053a076d0c9b5e9ea51 (patch) | |
tree | ad47f23400805ffa77a7821f2b2ec70649e58326 /sshconnect2.c | |
parent | 8faf8c84430cf3c19705b1d9f8889d256e7fd1fd (diff) |
Replace GSSAPI-specific instances of xfree with the equivalent calls to free.
Diffstat (limited to 'sshconnect2.c')
-rw-r--r-- | sshconnect2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 8c20eed93..0b13530ce 100644 --- a/sshconnect2.c +++ b/sshconnect2.c | |||
@@ -229,7 +229,7 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port) | |||
229 | orig = myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]; | 229 | orig = myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]; |
230 | xasprintf(&myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS], | 230 | xasprintf(&myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS], |
231 | "%s,null", orig); | 231 | "%s,null", orig); |
232 | xfree(gss); | 232 | free(gss); |
233 | } | 233 | } |
234 | #endif | 234 | #endif |
235 | 235 | ||