summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-12-04ln -s /lib/libns_winbind.so /lib/libnss_winbind.so.2Gerald Carter1-2/+1
(This used to be commit 5bfa2e901cbe550990a42544878719c51853548a)
2002-12-04Missed the removal of the incorrect ifdef.Jeremy Allison1-3/+1
Jeremy. (This used to be commit 9cfa245bba2a116b7364ea22feaf6f63b362f5d7)
2002-12-04Fix for 64 bit issues with oplocks and allocation size.Jeremy Allison8-1745/+2138
Jeremy. (This used to be commit 4a9c995e50b24e6ee6ec58c46da32100a8197724)
2002-12-04THIS FILE IS NOT OBSOLETE JELMER. DO NOT REMOVE ! Removing it breaksJeremy Allison1-0/+237
autoconf 2.13. Jeremy. (This used to be commit 81be3a142925956fec6e2f0609420b7f15356613)
2002-12-04[merge from app_head]Gerald Carter1-2/+15
XP sends GetPrinterData("ChangeId"). So we now respond accordingly. Possible fix for CR 1147. (This used to be commit 42a2e7d701fd342f2553660eb5094af8723fb50e)
2002-12-03Reformat of reply.c before Volker's patch.Jeremy Allison1-1059/+1029
Jeremy. (This used to be commit d41858b9e6a21f6e01305c33d107d16f2b587d37)
2002-12-03Rerun autoconf.Tim Potter1-18889/+8987
(This used to be commit aa496524ccef4dd882f7dfa890fab4cbea0cae64)
2002-12-03Defaulting python breaks the clean target it python isn't installed.Tim Potter1-6/+3
(This used to be commit 5739ee4e63a35d7778506047ae3ad2ddceb69ec5)
2002-12-03use FILE_MACRO instead of __FILE__Herb Lewis7-60/+60
use FUNCTION_MACRO instead of __FUNCTION_ (This used to be commit 243763d6eb107ab2444d81025232c8fe795baaf1)
2002-12-03use the new IVAL_TO_SMB_OFF_T for file_info size memberHerb Lewis1-4/+4
dir now shows correct size on large files (This used to be commit ce7d421ba9cfa65e3ed404f18e8b3b4cf4730593)
2002-12-03Support printer info 7, used for publishingJim McDonough2-0/+79
(This used to be commit 3c9726454ea6beb8d5d308805caecb86395c7ad2)
2002-12-03Stop using hardcoded key/value strings, be more forgiving of ↵Jim McDonough1-70/+74
dsspooler/dsdriver info existence. (This used to be commit ca8735532cb656a09c1586326cdce33984fe38b4)
2002-12-03Stop using hacks for dns host/domain names.Jim McDonough1-3/+5
(This used to be commit 1d0086aadb4fa57b127e80e455835dd6eb387f71)
2002-12-03fns for retrieving dns host name and domain name (get rid of lp_realm hacks).Jim McDonough1-0/+56
(This used to be commit 456813308d8542211183f9655b7fe598144f7bfc)
2002-12-03Add defines for standard DsSpooler/DsDriver values that get published.Jim McDonough1-0/+54
(This used to be commit 2b152addf49f0ede001b263174d2eaab2600e933)
2002-12-03Don't segfault when trying to delete a key when none exist.Jim McDonough1-0/+2
(This used to be commit 1bf36d3fc69b8129fff08f5a735e27a94eb46d49)
2002-12-03Fixed nasty bug where file writes with start offsets in the rangeJeremy Allison4-23/+26
0x80000000 -> 0xFFFFFFFF would fail as they were being cast from IVAL (uint32) to SMB_OFF_T (off_t or off64_t, both *signed* types). The sign extension would cause the offset to be treated as negative. Thanks to Herb for helping me track this one down (IRIX is good for large file tests :-). Jeremy. PS. That horrid EXEXIST thing has broken configure..... (This used to be commit fc7d3faed798e7496f2991ec7d795c3b1a3758f5)
2002-12-03Fixes for EXEEXT - must use \$ signs when you want an actual $ sign toTim Potter1-4/+4
be used. (This used to be commit 8c306804c6f3f0523ff5347e4b9360474d696a50)
2002-12-01As per Jeremy's request back this out, so as to re-gain the implicit lengthAndrew Bartlett1-7/+5
check. Andrew Bartlett (This used to be commit 323088259f19f59008160d56fbcb9df6a6cd0d98)
2002-12-01Link less with smbmnt and smbumount. Also change from a pstrcpy() to aAndrew Bartlett2-5/+5
strncpy() to make it clear that we must operate on a PATH_MAX sized buffer. Andrew Bartlett (This used to be commit 49d9698ef08d66dc238b2e3469da8944b444dfa1)
2002-12-01No need for fstring manipulation here (Tcon&X), just use string pointers.Andrew Bartlett1-5/+7
Andrew Bartlett (This used to be commit b072bb9c8469799734507bcdffd4be29211e2610)
2002-12-01Remove extra headers, and ensure that we correctly bail out of winbindd if weAndrew Bartlett7-7/+7
can't create the socket. Andrew Bartlett (This used to be commit 13b9af53bff8e42126a38f93c3bdd5b4d9b20aba)
2002-12-01Dereference the correct thing here, so we don't segfaultAndrew Bartlett1-1/+1
(This used to be commit ea18d02036b4e0502e5ecb057c9fe381709a07d8)
2002-12-01Make it clear that we might not be talking to a PDC here.Andrew Bartlett1-1/+1
(This used to be commit 7d099e9a5b7164e8cdbdb93d8c4527f02c8bdefd)
2002-12-01POSIX indicates that this is always in network byte order, so we don't need theAndrew Bartlett1-5/+0
little-endian case (tested on Intel-linux). Andrew Bartlett (This used to be commit 281b713b12ece63d499652df193509c57312b749)
2002-12-01Patch from Paul Green to detect exe extensions, needed for Stratus VOS.Andrew Bartlett3-8961/+18968
Andrew Bartlett (This used to be commit 3f5608c7e0175184fa599176178d391d54087b3d)
2002-12-01Fixup of ordered cleanup of get_dc_list - bug found by Dominik 'Aeneas' ↵Jeremy Allison1-27/+10
Schnitzer <dominik@schnitzer.at> Jeremy. (This used to be commit 7ba051a830a7dc96e3860a87643a3ac99cdf5836)
2002-11-29Ignore ntlm_auth binary.Tim Potter1-4/+5
(This used to be commit 25bbd0d1f90f819fcc7d9446f4f7e75e2434a639)
2002-11-29Fixed silly bug.Tim Potter1-1/+1
(This used to be commit 191c1596f5e939e733c9262c3beaf956328c7be6)
2002-11-29Rerun autoconf.Tim Potter1-866/+872
(This used to be commit d9644ea3edb085c5eb72593cef8f167fce6464c9)
2002-11-29Fix up smbwrapper target.Tim Potter2-1/+3
(This used to be commit f5fa4801ceb56b21facccb382db09165936df319)
2002-11-28merge in some changes from metze's patches (rest follows later, afterJelmer Vernooij1-2/+2
some issues in the new module system have been resolved) (This used to be commit 5b4d03fc8549696baebc0b4417582203ad7ba88e)
2002-11-28Add PDBLIBDIR, just like VFSLIBDIRJelmer Vernooij1-3/+9
(This used to be commit 3d0735e6b03ae77af42135a7f1aebb4206ae6655)
2002-11-27Fix comment - 850 -> iso8859-1Jeremy Allison1-1/+1
Jeremy. (This used to be commit 6639693746ba4c8f6622325ac143f8b1b3bd7538)
2002-11-27Remove use of 'F' - make 'f' and 'p' do unix (iso8859-1) encoding.Jeremy Allison1-10/+0
Jeremy. (This used to be commit e88bbec2a06bd92b8cfa33efdf166c4fa72cb656)
2002-11-27Test was reversed for ERRmoredata in cli_read.Jeremy Allison1-0/+10
Jeremy. (This used to be commit 1a36ac60bef8de5368860478c268ba1671bb4825)
2002-11-27merging changes from SAMBA_3_0 relating to RPM packagingGerald Carter3-20519/+9284
(This used to be commit 1cf0cfa1b7f00946c439b2b1a30ab3981df4a459)
2002-11-27syncing packaging files with SAMBA_3_0Gerald Carter2-188/+40
(This used to be commit cdeb6281f75fe8422015a1af52bf515ff8288ba8)
2002-11-27removing inet_aton()Gerald Carter1-1/+2
(This used to be commit 08ac3610f9ef7e1c37541729441acfa13b48d34c)
2002-11-27sync docs with SAMBA_3_0 and regenerateGerald Carter17-1048/+576
(This used to be commit 20e6d8c036a4c4ecfa2afb1dd29342c81ce00f8b)
2002-11-27fix cli_ds_getprimarydominfo(); merge from SAMBA_3_0Gerald Carter1-1/+1
(This used to be commit 481a8a8aa9dff336929cb168302f3faa3f046aa8)
2002-11-26After consultation with tpot, remove the 'winbind_domain' environmentAndrew Bartlett5-47/+3
variable hack, the feild on the pipe, and the server-side. It only controlled some enum operations in any case. This is to try and have less 'magic' environment variables. Andrew Bartlett (This used to be commit e4be82e4e2c7cdf15f3e20f73fe9f281f6384423)
2002-11-26Having waited for *way* too long, this is mimir's namecache and trusted domainAndrew Bartlett11-219/+552
cache code. This uses gencache, mimir's new caching code that stores at text-based cache of various data. Mimir has done a *lot* of work on this patch, and it is finally time to get it in CVS. Andrew Bartlett (This used to be commit 47f3bfe9564e7f3aff60cefaefd599e0abb30a31)
2002-11-26[print notify fixes from APP_HEAD]Gerald Carter6-287/+396
* fixing change notify on print server handle * adding change notify support into smbcontrol for sending comment changes, etc... All part of CR 1159/1160 (This used to be commit 256d8c27cdc6f802f3bfba44593b07014f6ae10a)
2002-11-25Regenerate with newer autoconfJelmer Vernooij1-9260/+20500
(This used to be commit 9084002709a6f50d8d92a37e8181e4a7bf20c577)
2002-11-25Instead of walking the entire group database, grabbing all members of eachAndrew Bartlett2-10/+38
group, testing for membership etc, use the already calculated NT_USER_TOKEN. (which is initgroups() based) So far we only fill out the 'domain' groups - we need to fill out the 'other sids' as well, and we possibly need to filter the list for 'domain groups' only (the old code did that), but Win2k doesn't seem to mind this for now. I also need to find out what the magic '7' is about. Fortunetly JF is in town, so I'll grill him tomorrow :-). Andrew Bartlett (This used to be commit 7e846e7387247f8bc2b07a1a1006014c6978143b)
2002-11-25Make lp_winbind_separator a const string.Tim Potter1-1/+1
(This used to be commit be90650674ce5ebc292fc804e6168c5cc4ed25dd)
2002-11-25Fix some argument checking bugs found by testsuite.Tim Potter1-16/+22
(This used to be commit 93306f581e3fa37d1aea67e93dc83d5a6d2fcb3f)
2002-11-24Add support to switch between Squid 2.4 and 2.5 protocols - squid doesn'tAndrew Bartlett1-7/+20
encode the username, so don't decode it (users could play HTTP escaping games on usernames). Andrew Bartlett (This used to be commit 71e24d0200e71ffcf52eaa77edc89175f31a45cd)
2002-11-24Move from NT_STATUS_UNSUCCESSFUL to NT_STATUS_NO_SUCH_USER, and other slightlyAndrew Bartlett1-16/+21
more useful error codes. (This used to be commit 5b1185b4e8592e6bc1abe581950571e249c03a78)