Deleted Added
full compact
pam_get_mapped_username.c (91094) pam_get_mapped_username.c (91100)
1/*-
2 * Copyright (c) 2002 Networks Associates Technologies, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by ThinkSec AS and
6 * NAI Labs, the Security Research Division of Network Associates, Inc.
7 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8 * DARPA CHATS research program.

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $Id$
35 */
36
37#include <security/pam_appl.h>
38
1/*-
2 * Copyright (c) 2002 Networks Associates Technologies, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by ThinkSec AS and
6 * NAI Labs, the Security Research Division of Network Associates, Inc.
7 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8 * DARPA CHATS research program.

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $Id$
35 */
36
37#include <security/pam_appl.h>
38
39/*
40 * XSSO 4.2.1
41 * XSSO 6 page 50
42 *
43 * Get valid matched identity in new domain
44 */
45
39int
40pam_get_mapped_username(pam_handle_t *pamh,
41 const char *src_username,
42 const char *src_module_type,
43 const char *src_authn_domain,
44 const char *target_module_type,
45 const char *target_authn_domain,
46 char **target_module_username)
47{
48
49 return (PAM_SYSTEM_ERR);
50}
46int
47pam_get_mapped_username(pam_handle_t *pamh,
48 const char *src_username,
49 const char *src_module_type,
50 const char *src_authn_domain,
51 const char *target_module_type,
52 const char *target_authn_domain,
53 char **target_module_username)
54{
55
56 return (PAM_SYSTEM_ERR);
57}
58
59/*
60 * NODOC
61 */