xref: /titanic_41/usr/src/cmd/ypcmd/yppasswd/mapfile-intf (revision 24da5b34f49324ed742a340010ed5bd3d4e06625)
1*24da5b34Srie#
2*24da5b34Srie# CDDL HEADER START
3*24da5b34Srie#
4*24da5b34Srie# The contents of this file are subject to the terms of the
5*24da5b34Srie# Common Development and Distribution License (the "License").
6*24da5b34Srie# You may not use this file except in compliance with the License.
7*24da5b34Srie#
8*24da5b34Srie# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*24da5b34Srie# or http://www.opensolaris.org/os/licensing.
10*24da5b34Srie# See the License for the specific language governing permissions
11*24da5b34Srie# and limitations under the License.
12*24da5b34Srie#
13*24da5b34Srie# When distributing Covered Code, include this CDDL HEADER in each
14*24da5b34Srie# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*24da5b34Srie# If applicable, add the following below this CDDL HEADER, with the
16*24da5b34Srie# fields enclosed by brackets "[]" replaced with your own identifying
17*24da5b34Srie# information: Portions Copyright [yyyy] [name of copyright owner]
18*24da5b34Srie#
19*24da5b34Srie# CDDL HEADER END
20*24da5b34Srie#
21*24da5b34Srie
22*24da5b34Srie#
23*24da5b34Srie# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24*24da5b34Srie# Use is subject to license terms.
25*24da5b34Srie#
26*24da5b34Srie# ident	"%Z%%M%	%I%	%E% SMI"
27*24da5b34Srie#
28*24da5b34Srie
29*24da5b34Srie# rpc.yppasswdd interposes on a number of routines from libnisdb and libnsl, so
30*24da5b34Srie# define these as interposers.  Note, libnisdb is itself an interposer, so
31*24da5b34Srie# these rpc.yppasswdd definitions are required to override libnisdb.
32*24da5b34Srie{
33*24da5b34Srie	global:
34*24da5b34Srie		delete_map = INTERPOSE;
35*24da5b34Srie		hash = INTERPOSE;
36*24da5b34Srie		init_lock_map = INTERPOSE;
37*24da5b34Srie		lock_core = INTERPOSE;
38*24da5b34Srie		lock_map = INTERPOSE;
39*24da5b34Srie		mflag = INTERPOSE;
40*24da5b34Srie		nogecos = INTERPOSE;
41*24da5b34Srie		nopw = INTERPOSE;
42*24da5b34Srie		noshell = INTERPOSE;
43*24da5b34Srie		rename_map = INTERPOSE;
44*24da5b34Srie		single = INTERPOSE;
45*24da5b34Srie		unlock_core = INTERPOSE;
46*24da5b34Srie		unlock_map = INTERPOSE;
47*24da5b34Srie		validloginshell = INTERPOSE;
48*24da5b34Srie		validstr = INTERPOSE;
49*24da5b34Srie		xdr_yppasswd = INTERPOSE;
50*24da5b34Srie};
51