diff options
author | Matt Johnston <matt@ucc.asn.au> | 2004-09-12 05:53:48 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2004-09-12 05:53:48 +0000 |
commit | 2575e227a52ce90adc24fd61a77fe2b871402326 (patch) | |
tree | 0dff66480bea08c955c52f8880a6fa38d547251e /svr-authpasswd.c | |
parent | 7ed5870ed9e2be7cde050eafcdd778d6fce8540c (diff) |
Don't need to burn the payload buffer since process-packet.c does it
--HG--
extra : convert_revision : 12619953d6d88a1b8b0afc4dd5f6e0e2f8b324a0
Diffstat (limited to 'svr-authpasswd.c')
-rw-r--r-- | svr-authpasswd.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/svr-authpasswd.c b/svr-authpasswd.c index 6f7c909..458deef 100644 --- a/svr-authpasswd.c +++ b/svr-authpasswd.c @@ -80,10 +80,6 @@ void svr_auth_password() { password = buf_getstring(ses.payload, &passwordlen); - /* clear the buffer containing the password */ - buf_incrpos(ses.payload, -passwordlen - 4); - m_burn(buf_getptr(ses.payload, passwordlen + 4), passwordlen + 4); - /* the first bytes of passwdcrypt are the salt */ testcrypt = crypt((char*)password, passwdcrypt); m_burn(password, passwordlen); |