Deleted Added
full compact
pam_set_mapped_username.c (91094) pam_set_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 64
42 *
43 * Set a username
44 */
45
39int
40pam_set_mapped_username(pam_handle_t *pamh,
41 char *src_username,
42 char *src_module_type,
43 char *src_authn_domain,
44 char *target_module_username,
45 char *target_module_type,
46 char *target_authn_domain)
47{
48
49 return (PAM_SYSTEM_ERR);
50}
46int
47pam_set_mapped_username(pam_handle_t *pamh,
48 char *src_username,
49 char *src_module_type,
50 char *src_authn_domain,
51 char *target_module_username,
52 char *target_module_type,
53 char *target_authn_domain)
54{
55
56 return (PAM_SYSTEM_ERR);
57}
58
59/*
60 * NODOC
61 */