# HG changeset patch # User holycleugh # Date 1546159204 18000 # Node ID 81a9f0479e508c0a541de61bad49e33232e64288 # Parent 0ceeffe67ec466c5c3b337b2d08fc8fd7c5af058 conv: fix bug where pam prompts were not being shown diff -r 0ceeffe67ec4 -r 81a9f0479e50 pam/src/conv.rs --- 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> { 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);