changeset 28:81a9f0479e50

conv: fix bug where pam prompts were not being shown
author holycleugh <holycleugh>
date Sun, 30 Dec 2018 03:40:04 -0500
parents 0ceeffe67ec4
children c16564971c05
files pam/src/conv.rs
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pam/src/conv.rs	Sun Dec 30 03:38:57 2018 -0500
+++ b/pam/src/conv.rs	Sun Dec 30 03:40:04 2018 -0500
@@ -55,9 +55,10 @@
     /// styles.
     pub fn send(&self, style: PamMessageStyle, msg: &str) -> PamResult<Option<String>> {
         let mut resp_ptr: *const PamResponse = ptr::null();
+        let msg_cstr = CString::new(msg).unwrap();
         let msg = PamMessage {
             msg_style: style,
-            msg: CString::new(msg).unwrap().as_ptr(),
+            msg: msg_cstr.as_ptr(),
         };
 
         let ret = (self.conv)(1, &&msg, &mut resp_ptr, self.appdata_ptr);