summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | make install should also install the default dat files from codepagesHerb Lewis2002-03-212-1/+27
| | | | | | | | | | | | | | | | | | | | directory so we don't keep getting these stupid error messages about incorrect size for valid.dat upcase.dat and lowcase.dat
| * | | Missed a couple of fetch/store_ints.Jeremy Allison2002-03-211-4/+4
| | | | | | | | | | | | | | | | Jeremy.
| * | | Make winbindd_idmap tdb endian independent. This is very important forJeremy Allison2002-03-214-111/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sharing between machines with rsync. Finally removed tdb_store_int/tdb_fetch_int. Now only tdb_store_int32/tdb_fetch_int32 which are endian independent are allowed. Jeremy.
| * | | When upgrading from an old idmap tdb, remember to overwrite the reverseJeremy Allison2002-03-211-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | mapping as well as the forward one. Found this in doing the backport to 2.2.x. This is *essential* to upgrade an old idmap file to a new one. Jeremy.
| * | | merge fix for core dump when called with no args from 2.2Herb Lewis2002-03-211-1/+1
| | | |
| * | | Fix stupid typo !Jeremy Allison2002-03-211-2/+2
| | | | | | | | | | | | | | | | Jeremy.
| * | | add .proto.checkHerb Lewis2002-03-211-0/+1
| | | |
| * | | update usage message with other options. Add a -d debuglevel optionHerb Lewis2002-03-211-1/+11
| | | |
| * | | must use native endian index when creating default valid.dat table so itHerb Lewis2002-03-211-2/+2
| | | | | | | | | | | | | | | | is the same on big and little endian systems.
| * | | return . and .. first in readdir - this fixes masktest on IRIX whichHerb Lewis2002-03-211-1/+13
| | | | | | | | | | | | | | | | returns . then single letter files then .. then all other files.
| * | | There is no reason we can't join a domain with secuirty=user. In fact weAndrew Bartlett2002-03-211-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | need to when we are a BDC or a PDC doing a self-join. Andrew Bartlett
| * | | make net ads info work with -SAndrew Tridgell2002-03-211-4/+5
| | | |
| * | | Compile fix for --with-profiling-dataTim Potter2002-03-211-0/+2
| | | |
| * | | Don't leak memory on failure.Andrew Bartlett2002-03-211-1/+3
| | | |
| * | | Make sure to initaliase SAM_ACCOUNT pointers to NULL, otherwise pdb_init_sam()Andrew Bartlett2002-03-212-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | fails. Andrew Bartlett
| * | | fixed the secondary group mappings for ADS usersAndrew Tridgell2002-03-211-8/+56
| | | |
| * | | merge from APPLIANCE_HEADGerald Carter2002-03-201-12/+1
| | | |
| * | | Ensure we don't do lp_servicename()'s in tdb traverse as thisJeremy Allison2002-03-201-5/+7
| | | | | | | | | | | | | | | | | | | | allocates lots of memory. Jeremy.
| * | | Print queue entries *must* have queue names, not numbers - numbers areJeremy Allison2002-03-202-9/+32
| | | | | | | | | | | | | | | | | | | | | | | | not identical between different smbds (mr potter, come here and take your medicine.... :-). Jeremy.
| * | | John's patch changed the size of a structure stored in the tdb - weJeremy Allison2002-03-201-1/+1
| | | | | | | | | | | | | | | | | | | | must thus update the versionid of the tdb. Jeremy.
| * | | HEAD only fix for truncate from Alexander Bokovoy <a.bokovoy@sam-solutions.net>.Jeremy Allison2002-03-201-1/+1
| | | | | | | | | | | | | | | | | | | | This code needs replacing with the trans2.c from 2.2.x. Jeremy.
| * | | Make ldapsam compile again.Andrew Bartlett2002-03-201-20/+0
| | | |
| * | | BUFFER_SIZE Should be 128k if large read write tests are to work.Jeremy Allison2002-03-201-0/+5
| | | | | | | | | | | | | | | | Jeremy.
| * | | Add assertions that kill() is never accidentally passed a non-positiveMartin Pool2002-03-204-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pid. This follows a bug in rsync where it would accidentally kill(-1), removing all the user's processes. I can't see any way this would directly happen in Samba, but having the assertions seems beneficial. http://cvs.samba.org/cgi-bin/cvsweb/rsync/util.c.diff?r1=1.108&r2=1.109&f=h
| * | | Actually use flags passed in PYTHON_CFLAGS variable.Tim Potter2002-03-201-21/+33
| | | | | | | | | | | | | | | | | | | | | | | | Use py_common.c in winbind extension module for correct initialisation. Some reformatting.
| * | | Added enum domain users and enum domain groups.Tim Potter2002-03-201-22/+77
| | | |
| * | | Pass $(CFLAGS) and $(CPPFLAGS) to python compile instead of $(FLAGS)Tim Potter2002-03-201-1/+1
| | | |
| * | | Added name_to_sid and sid_to_name functions.Tim Potter2002-03-201-1/+136
| | | |
| * | | Remove nsswitch from include directories.Tim Potter2002-03-201-2/+4
| | | |
| * | | Cache call to winbind separator.Tim Potter2002-03-201-46/+56
| | | | | | | | | | | | | | | | | | | | | | | | Some random reformatting and cleanup. Display output of wbinfo -s using actual winbind separator.
| * | | resetprinter merge from SAMBA_2_2Gerald Carter2002-03-203-13/+36
| | | |
| * | | Ignore autogenerated setup.pyTim Potter2002-03-201-0/+1
| | | |
| * | | Initial version.Tim Potter2002-03-208-0/+1734
| | | |
| * | | Correctly increment offset in cli_smbwrite.Jeremy Allison2002-03-202-9/+25
| | | | | | | | | | | | | | | | Jeremy.
| * | | Allow a zero rid in pdb_smbpasswd. When given a zero rid the pdb backendAndrew Bartlett2002-03-201-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | should chose the next available RID. For smbpasswd it just means using the algorithm, but other backends can do somthing more useful. Andrew Bartlett
| * | | Test against W2K that we're doing large read/writes correctly (we are).Jeremy Allison2002-03-201-0/+9
| | | | | | | | | | | | | | | | | | | | At least with 14 word writes. Jeremy.
| * | | Ensure we get a real fd when opening for set file allocation.Jeremy Allison2002-03-201-1/+1
| | | | | | | | | | | | | | | | Jeremy.
| * | | Merge of Richard's lookupsid fix.Tim Potter2002-03-201-1/+4
| | | |
| * | | Fix for debug typo.Jeremy Allison2002-03-201-1/+1
| | | |
| * | | Remove the "stat open" code - make it inline. This should fix theJeremy Allison2002-03-2010-256/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bugs with opening and renaming mp3 files, also the word rename problems that people have had for a while. Needs a make clean :-) make. Also added JohnR's printing fix. Jeremy.
| * | | Merge from app-head:Tim Potter2002-03-201-2/+2
| | | | | | | | | | | | | | | | > Don't put two copies of the server name in construct_printer_info_1()
| * | | Patch to configure.in and Makefile.in for Python extensions.Tim Potter2002-03-191-0/+41
| | | |
| * | | Merge JohnR's fix.Jeremy Allison2002-03-191-5/+10
| | | | | | | | | | | | | | | | Jeremy.
| * | | the beginning of a test to determine and display a servers propertiesAndrew Tridgell2002-03-191-0/+31
| | | | | | | | | | | | | | | | just shows capabilities at the moment
| * | | setup.py for samba python wrappersTim Potter2002-03-191-0/+93
| | | |
| * | | make "net ads user" and "net ads group" also use the new paged interfaceAndrew Tridgell2002-03-191-30/+16
| | | |
| * | | updated winbindd to used paged ldap searches for all ldap queriesAndrew Tridgell2002-03-191-1/+1
| | | |
| * | | added a ads_do_search_all() call, which is a more convenient interfaceAndrew Tridgell2002-03-191-0/+42
| | | | | | | | | | | | | | | | | | | | to paged searches. This makes updating winbindd to used paged searches trivial.
| * | | second step to gain free uid<->rid mappingSimo Sorce2002-03-1910-166/+216
| | | | | | | | | | | | | | | | we still need to free gid<->rid mapping and few other stuff
| * | | fixed paged controls on my box. The problem seems to be incorrectAndrew Tridgell2002-03-191-4/+21
| | | | | | | | | | | | | | | | | | | | referrals parsing in the openldap libs. By disabling referrals we get valid controls back and the cookies work.