Mercurial > crates > nonstick
changeset 13:cc39d168aeb8
Bring generic-naming in line with rest of lib in `set_item_str`.
author | Marc Brinkmann <git@marcbrinkmann.de> |
---|---|
date | Sun, 26 Feb 2017 12:16:03 +0100 |
parents | 30831c70e5c0 |
children | 51b097c12d3c |
files | src/module.rs |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/module.rs Sun Feb 26 12:12:36 2017 +0100 +++ b/src/module.rs Sun Feb 26 12:16:03 2017 +0100 @@ -139,12 +139,12 @@ /// /// See `pam_set_item` in /// http://www.linux-pam.org/Linux-PAM-html/mwg-expected-by-module-item.html -pub fn set_item_str<'a, P: PamItem>(pamh: &'a mut PamHandleT, item: &str) -> PamResult<()> { +pub fn set_item_str<'a, T: PamItem>(pamh: &'a mut PamHandleT, item: &str) -> PamResult<()> { let c_item = CString::new(item).unwrap().as_ptr(); let res = unsafe { pam_set_item(pamh, - P::item_type(), + T::item_type(), // unwrapping is okay here, as c_item will not be a NULL // pointer