1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00
samba-mirror/source3/nsswitch
Tim Potter d1a0cc342f Remove wrapper function _get_trust_account_password() as it doesn't
seem to do anything useful anymore other than call
secrets_fetch_trust_account_password().
(This used to be commit 7b0c03cbf1)
2003-01-14 05:08:42 +00:00
..
.cvsignore Ignore winbindd_proto.h 2002-06-12 05:27:13 +00:00
hp_nss_common.h HP-UX 10.20 compiles fixes from SAMBA_2_2 2002-05-09 04:11:18 +00:00
hp_nss_dbdefs.h Removed version number from file header. 2002-01-30 06:08:46 +00:00
nss.h HP-UX 10.20 compiles fixes from SAMBA_2_2 2002-05-09 04:11:18 +00:00
pam_winbind.c Return the 'freindly' NT error message if at all possible. 2003-01-11 03:25:31 +00:00
pam_winbind.h Winbind client-side cleanups. 2002-09-07 05:41:23 +00:00
README added basic nsswitch support - this allows you to use a "wins" entry 1999-12-17 06:11:25 +00:00
wb_client.c Add some more const :-) 2002-08-07 07:28:24 +00:00
wb_common.c Remove extra headers, and ensure that we correctly bail out of winbindd if we 2002-12-01 03:14:30 +00:00
wbinfo.c cannot make assignments to const values. 2003-01-07 17:43:37 +00:00
winbind_client.h This is the 'main' inclue for for winbind clients - all clients should include 2002-09-07 09:25:36 +00:00
winbind_nss_config.h fix getpass replacement check (i thought I fixed this a few days 2002-09-25 15:46:49 +00:00
winbind_nss_solaris.c More winbind for HPUX updates from Don Mccall. I think JRA has already 2002-04-03 21:39:01 +00:00
winbind_nss.c Winbind client-side cleanups. 2002-09-07 05:41:23 +00:00
winbindd_ads.c Forward port the change to talloc_init() to make all talloc contexts 2002-12-20 20:23:06 +00:00
winbindd_cache.c Fix spelling of background_process. 2002-10-15 21:34:40 +00:00
winbindd_cm.c merge of get_dc_name()-like code from APP_HEAD; better support password server = DC1 * 2002-12-12 23:35:55 +00:00
winbindd_dual.c remove accidental debug code.. 2002-11-09 04:37:07 +00:00
winbindd_group.c Forward port the change to talloc_init() to make all talloc contexts 2002-12-20 20:23:06 +00:00
winbindd_idmap.c more debug classess activated 2002-06-18 09:20:13 +00:00
winbindd_misc.c Remove wrapper function _get_trust_account_password() as it doesn't 2003-01-14 05:08:42 +00:00
winbindd_nss.h After consultation with tpot, remove the 'winbind_domain' environment 2002-11-26 12:04:16 +00:00
winbindd_pam.c Added a comment in case anyone is thinking of doing a SMB_ASSERT in winbindd. 2003-01-14 04:04:13 +00:00
winbindd_rpc.c Fix from "Ken Cross" <kcross@nssolutions.com> for enumerating 2003-01-06 07:29:34 +00:00
winbindd_sid.c Correct misleading comment: winbindd_lookupname gets the SID for a 2003-01-09 01:16:12 +00:00
winbindd_user.c Forward port the change to talloc_init() to make all talloc contexts 2002-12-20 20:23:06 +00:00
winbindd_util.c Merge of remove "winbindd holding pattern" from appliance. It's a bit 2003-01-13 03:45:31 +00:00
winbindd_wins.c Winbind updates! 2002-07-31 12:05:30 +00:00
winbindd.c Merge of remove "winbindd holding pattern" from appliance. It's a bit 2003-01-13 03:45:31 +00:00
winbindd.h merge from APP_HEAD 2002-10-08 18:29:57 +00:00
wins.c Kill off codepage related stuff, now we don't use codepages any more. 2002-07-03 00:44:39 +00:00

This extension provides a "wins" module for NSS on glibc2/Linux.  This
allows you to use a WINS entry in /etc/nsswitch.conf for hostname
resolution, allowing you to resolve netbios names via start unix
gethostbyname() calls. The end result is that you can use netbios
names as host names in unix apps.

1) run configure
2) run "make nsswitch"
3) cp nsswitch/libnss_wins.so /lib/libnss_wins.so.2
4) add a wins entry to the hosts line in /etc/nsswitch.conf
5) use it

tridge@linuxcare.com