aboutsummaryrefslogtreecommitdiff
path: root/modules/pam_unix/pam_unix_sess.c
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2010-08-31 17:23:27 -0700
committerSteve Langasek <vorlon@debian.org>2019-01-08 21:47:21 -0800
commit6c6f451aff56e368041dd4076ad61d8f51635b7f (patch)
treeed1162733e6688167c56704ffbf4e63c602abf35 /modules/pam_unix/pam_unix_sess.c
parent0b7e86d2422eb0ddabce5ffcd59ee31525a4e8af (diff)
parentb70316c593cbc8e5c9155e5c6597497090c6eb88 (diff)
downloadpam-6c6f451aff56e368041dd4076ad61d8f51635b7f.tar.gz
pam-6c6f451aff56e368041dd4076ad61d8f51635b7f.tar.bz2
pam-6c6f451aff56e368041dd4076ad61d8f51635b7f.zip
merge upstream version 1.1.2
Diffstat (limited to 'modules/pam_unix/pam_unix_sess.c')
-rw-r--r--modules/pam_unix/pam_unix_sess.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pam_unix/pam_unix_sess.c b/modules/pam_unix/pam_unix_sess.c
index 3379df42..2f080805 100644
--- a/modules/pam_unix/pam_unix_sess.c
+++ b/modules/pam_unix/pam_unix_sess.c
@@ -1,5 +1,5 @@
/*
- * $Id: pam_unix_sess.c,v 1.10 2008/01/23 15:35:13 t8m Exp $
+ * $Id: pam_unix_sess.c,v 1.11 2010/08/17 11:15:33 kukuk Exp $
*
* Copyright Alexander O. Yuriev, 1996. All rights reserved.
* Copyright Jan Rêkorajski, 1999. All rights reserved.
@@ -73,7 +73,7 @@ PAM_EXTERN int pam_sm_open_session(pam_handle_t * pamh, int flags,
D(("called."));
- ctrl = _set_ctrl(pamh, flags, NULL, NULL, argc, argv);
+ ctrl = _set_ctrl(pamh, flags, NULL, NULL, NULL, argc, argv);
retval = pam_get_item(pamh, PAM_USER, (void *) &user_name);
if (user_name == NULL || *user_name == '\0' || retval != PAM_SUCCESS) {
@@ -107,7 +107,7 @@ PAM_EXTERN int pam_sm_close_session(pam_handle_t * pamh, int flags,
D(("called."));
- ctrl = _set_ctrl(pamh, flags, NULL, NULL, argc, argv);
+ ctrl = _set_ctrl(pamh, flags, NULL, NULL, NULL, argc, argv);
retval = pam_get_item(pamh, PAM_USER, (void *) &user_name);
if (user_name == NULL || *user_name == '\0' || retval != PAM_SUCCESS) {