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 /auth2-gss.c | |
parent | 8faf8c84430cf3c19705b1d9f8889d256e7fd1fd (diff) |
Replace GSSAPI-specific instances of xfree with the equivalent calls to free.
Diffstat (limited to 'auth2-gss.c')
-rw-r--r-- | auth2-gss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth2-gss.c b/auth2-gss.c index 3c3cbb966..b8db8204f 100644 --- a/auth2-gss.c +++ b/auth2-gss.c | |||
@@ -81,7 +81,7 @@ userauth_gsskeyex(Authctxt *authctxt) | |||
81 | authctxt->pw)); | 81 | authctxt->pw)); |
82 | 82 | ||
83 | buffer_free(&b); | 83 | buffer_free(&b); |
84 | xfree(mic.value); | 84 | free(mic.value); |
85 | 85 | ||
86 | return (authenticated); | 86 | return (authenticated); |
87 | } | 87 | } |