diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-06-02 00:07:31 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-06-02 00:07:31 +0200 |
commit | f60845fde29cead9d75e812db1c04916b4c58ffd (patch) | |
tree | a69fe76f6dd73057e46625867d1b4282e8a5a040 /monitor_wrap.c | |
parent | Remove stray '+' accidentally introduced in sync (diff) | |
download | openssh-f60845fde29cead9d75e812db1c04916b4c58ffd.tar.xz openssh-f60845fde29cead9d75e812db1c04916b4c58ffd.zip |
- (dtucker) [M auth-chall.c auth-krb5.c auth-pam.c cipher-aes.c cipher-ctr.c
groupaccess.c loginrec.c monitor.c monitor_wrap.c session.c sshd.c
sshlogin.c uidswap.c openbsd-compat/bsd-cygwin_util.c
openbsd-compat/getrrsetbyname-ldns.c openbsd-compat/port-aix.c
openbsd-compat/port-linux.c] Replace portable-specific instances of xfree
with the equivalent calls to free.
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r-- | monitor_wrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c index b1870fcba..88ff68330 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c @@ -805,7 +805,7 @@ mm_do_pam_account(void) ret = buffer_get_int(&m); msg = buffer_get_string(&m, NULL); buffer_append(&loginmsg, msg, strlen(msg)); - xfree(msg); + free(msg); buffer_free(&m); @@ -1035,7 +1035,7 @@ mm_skey_query(void *ctx, char **name, char **infotxt, mm_chall_setup(name, infotxt, numprompts, prompts, echo_on); xasprintf(*prompts, "%s%s", challenge, SKEY_PROMPT); - xfree(challenge); + free(challenge); return (0); } |