summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2008-10-12Use common util_file code.Jelmer Vernooij17-398/+60
2008-10-12Sync util_tdb implementations.Jelmer Vernooij3-314/+17
2008-10-12Move rbtree.[ch] to lib/util.Jelmer Vernooij5-557/+3
2008-10-12Use common xfile.h.Jelmer Vernooij2-49/+1
2008-10-12Use common byteorder.h.Jelmer Vernooij3-178/+2
2008-10-12Fix "warning: initialization discards qualifiers from pointer target type"Volker Lendecke1-1/+1
2008-10-12Fix "make etags" -- args list was too long for my etagsVolker Lendecke1-1/+3
2008-10-12Revert "Make get_rpc_pipe() static"Volker Lendecke2-3/+2
This reverts commit f25972832ec9d5a130da9dc060f4c3ed35bda7db.
2008-10-12Make get_rpc_pipe() staticVolker Lendecke2-2/+3
2008-10-12Remove unused #definesVolker Lendecke1-3/+0
2008-10-12Fix the buildVolker Lendecke1-1/+1
2008-10-12Use common signal helper implementation.Jelmer Vernooij2-139/+1
2008-10-12Cope with the fact that the data blobs returned are nowJelmer Vernooij1-4/+20
talloc-allocated. Ideally, this memory should be talloc-stolen (and perhaps have DATA_BLOB in the interface everywhere), but that requires some more complex changes so I've just changed it to copy it for now.
2008-10-12Fix warning, prototype.Jelmer Vernooij1-1/+1
2008-10-12Share data_blob implementation.Jelmer Vernooij9-218/+16
2008-10-12Use common strlist implementation in Samba 3 and Samba 4.Jelmer Vernooij7-118/+11
2008-10-11Cope with changed signature of http_timestring().Jelmer Vernooij17-592/+41
2008-10-11Use xfile from common lib/util in Samba 3.Jelmer Vernooij2-418/+1
Conflicts: source3/Makefile.in
2008-10-11Remove duplicate copy of dlinklist.h.Jelmer Vernooij2-114/+1
2008-10-11Fix merged build locations.Jelmer Vernooij1-7/+7
2008-10-11Clean up properly.Jelmer Vernooij1-1/+3
2008-10-11Fix libutil path.Jelmer Vernooij1-1/+1
2008-10-11Provide the same set of helper functions for DEBUG in Samba 3 and SambaJelmer Vernooij3-9/+18
4, even though the macros are still different. This makes it possible to use object code compiled with one DEBUG() macro from the other sourceX directory.
2008-10-11Merge branch 'master' of ssh://git.samba.org/data/git/samba into arc4Jelmer Vernooij124-4865/+4543
2008-10-11Make use of talloc_tos()Volker Lendecke1-2/+2
2008-10-11Fix some nonempty blank linesVolker Lendecke2-23/+23
2008-10-11Fix a "nexted extern declaration" warningVolker Lendecke1-1/+1
2008-10-10Initialize near creation of resource. Makes code clearer.Jeremy Allison1-0/+2
Jeremy.
2008-10-10Ensure we do reinit_after_fork().Jeremy Allison1-0/+5
Jeremy.
2008-10-10Allow data flow to be debugged and only log on error. All seems ok now.Jeremy Allison1-8/+40
Jeremy.
2008-10-10Async is trickier than it looks :-). Don't use a stack variable for a ↵Jeremy Allison1-6/+18
private data ptr. Jeremy.
2008-10-10If you have a large number of cups printers, then scanning for print info ↵Jeremy Allison6-34/+267
can cause a client to timeout (it takes longer than 30 seconds to enumerate them). Make scanning for printers async with a callback from the main loop. This fixes a bug that was irritating *me* :-). Jeremy.
2008-10-10pam_winbind: re-add mkhomedir option.Günther Deschner2-3/+133
Guenther
2008-10-10pam_winbind: remove unused pam_winbind_request().Günther Deschner1-47/+0
Guenther
2008-10-10pam_winbind: fix wbc_auth_error_to_pam_error().Günther Deschner1-18/+14
Guenther
2008-10-10pam_winbind: remove some unused macros.Günther Deschner1-47/+0
Guenther
2008-10-10pam_winbind: remove NETLOGON_CACHED_ACCOUNT and NETLOGON_GRACE_LOGON.Günther Deschner1-7/+2
Guenther
2008-10-10pam_winbind: remove ACB_PWNOEXP.Günther Deschner2-4/+2
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_AUTH.Günther Deschner1-116/+251
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_LOGOFF.Günther Deschner1-19/+56
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_CHAUTHTOK.Günther Deschner2-81/+71
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_LOOKUPNAME/LOOKUPSID.Günther Deschner1-51/+23
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_INFO.Günther Deschner1-9/+12
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_GETPWNAM.Günther Deschner1-15/+11
Guenther
2008-10-10pam_winbind: add _pam_check_remark_auth_err().Günther Deschner1-0/+41
Guenther
2008-10-10pam_winbind: add wbc_auth_error_to_pam_error().Günther Deschner1-8/+45
Guenther
2008-10-10pam_winbind: add wbc_error_to_pam_error().Günther Deschner1-0/+36
Guenther
2008-10-10pam_winbind: prepare to use libwbclient inside pam_winbind.Günther Deschner2-2/+3
Guenther
2008-10-10pam_winbind: convert to use talloc.Günther Deschner3-59/+58
Guenther
2008-10-10libwbclient: add wbcLogonUser().Günther Deschner2-0/+228
Guenther