Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Actually use flags passed in PYTHON_CFLAGS variable. | Tim Potter | 2002-03-20 | 1 | -21/+33 | |
| | | | | | | Use py_common.c in winbind extension module for correct initialisation. Some reformatting. | |||||
* | Added enum domain users and enum domain groups. | Tim Potter | 2002-03-20 | 1 | -22/+77 | |
| | ||||||
* | Pass $(CFLAGS) and $(CPPFLAGS) to python compile instead of $(FLAGS) | Tim Potter | 2002-03-20 | 1 | -1/+1 | |
| | ||||||
* | Added name_to_sid and sid_to_name functions. | Tim Potter | 2002-03-20 | 1 | -1/+136 | |
| | ||||||
* | Remove nsswitch from include directories. | Tim Potter | 2002-03-20 | 1 | -2/+4 | |
| | ||||||
* | Cache call to winbind separator. | Tim Potter | 2002-03-20 | 1 | -46/+56 | |
| | | | | | | Some random reformatting and cleanup. Display output of wbinfo -s using actual winbind separator. | |||||
* | resetprinter merge from SAMBA_2_2 | Gerald Carter | 2002-03-20 | 3 | -13/+36 | |
| | ||||||
* | Ignore autogenerated setup.py | Tim Potter | 2002-03-20 | 1 | -0/+1 | |
| | ||||||
* | Initial version. | Tim Potter | 2002-03-20 | 8 | -0/+1734 | |
| | ||||||
* | Correctly increment offset in cli_smbwrite. | Jeremy Allison | 2002-03-20 | 2 | -9/+25 | |
| | | | | Jeremy. | |||||
* | Allow a zero rid in pdb_smbpasswd. When given a zero rid the pdb backend | Andrew Bartlett | 2002-03-20 | 1 | -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 Allison | 2002-03-20 | 1 | -0/+9 | |
| | | | | | At least with 14 word writes. Jeremy. | |||||
* | Ensure we get a real fd when opening for set file allocation. | Jeremy Allison | 2002-03-20 | 1 | -1/+1 | |
| | | | | Jeremy. | |||||
* | Merge of Richard's lookupsid fix. | Tim Potter | 2002-03-20 | 1 | -1/+4 | |
| | ||||||
* | Fix for debug typo. | Jeremy Allison | 2002-03-20 | 1 | -1/+1 | |
| | ||||||
* | Remove the "stat open" code - make it inline. This should fix the | Jeremy Allison | 2002-03-20 | 10 | -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 Potter | 2002-03-20 | 1 | -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 Potter | 2002-03-19 | 1 | -0/+41 | |
| | ||||||
* | Merge JohnR's fix. | Jeremy Allison | 2002-03-19 | 1 | -5/+10 | |
| | | | | Jeremy. | |||||
* | the beginning of a test to determine and display a servers properties | Andrew Tridgell | 2002-03-19 | 1 | -0/+31 | |
| | | | | just shows capabilities at the moment | |||||
* | setup.py for samba python wrappers | Tim Potter | 2002-03-19 | 1 | -0/+93 | |
| | ||||||
* | make "net ads user" and "net ads group" also use the new paged interface | Andrew Tridgell | 2002-03-19 | 1 | -30/+16 | |
| | ||||||
* | updated winbindd to used paged ldap searches for all ldap queries | Andrew Tridgell | 2002-03-19 | 1 | -1/+1 | |
| | ||||||
* | added a ads_do_search_all() call, which is a more convenient interface | Andrew Tridgell | 2002-03-19 | 1 | -0/+42 | |
| | | | | | to paged searches. This makes updating winbindd to used paged searches trivial. | |||||
* | second step to gain free uid<->rid mapping | Simo Sorce | 2002-03-19 | 10 | -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 incorrect | Andrew Tridgell | 2002-03-19 | 1 | -4/+21 | |
| | | | | | referrals parsing in the openldap libs. By disabling referrals we get valid controls back and the cookies work. | |||||
* | Take out autobuild dependency on proto.h; breaks some proprietary Makes. | Martin Pool | 2002-03-19 | 1 | -8/+4 | |
| | ||||||
* | Refactor for systems like Solaris that cannot handle wildcards on the | Martin Pool | 2002-03-19 | 1 | -4/+8 | |
| | | | | right side of a dependency line. | |||||
* | Change the Makefile to rebuild proto.h as necessary -- note that this | Martin Pool | 2002-03-19 | 1 | -16/+55 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | does not imply that all source will be rebuilt when prototypes change, merely that the prototypes will be updated. make proto, clean, delheaders, headers, etc all behave equivalently to before. Intended new behaviour for proto.h, whenever source is being compiled: If proto.h does not exist, it is built. If any source files have changed since proto.h was last checked (.proto.check), then proto.h is checked. If there are no actual changes since last time, its mtime is not changed, but we do remember the time at which it was checked. Whenever we try to build a .o, we need to check the headers are up to date. However, rebuilding the prototypes does not imply rebuilding all object files. Also to allow people to build on machines without Awk, we never try to use it unless a source file has changed. I guess if we wanted, we could have lack of Awk only cause a warning, not failure. The point of all of this is to be easier on people who don't understand or forget to type "make proto", and to reduce the chance of build breakage by having prototypes out of sync. I also rolled back JF's changes to put proto.h into builddir rather than srcdir. There are good arguments in both directions, but since we keep proto.h in CVS, it seems important that the up-to-date copy by in srcdir where it can be checked back in. If people are fussed about having srcdir be readonly you could change this -- but since proto.h is only rebuilt when there are changes, it's not a big deal. I also fixed an apparent race condition in "make headers" that would make it unsafe if you did 'make -j2', and made 'make clean' not kill proto.h, since people may not be able to rebuild it. I reckon there's nothing gnumake-specific here but we shall see. I also have this great idea about rewriting libtool in C++... | |||||
* | Fix a double-free bug in wbinfo -t's call in winbindd. | Andrew Bartlett | 2002-03-19 | 2 | -7/+8 | |
| | | | | | | | | | | I forgot to clean this up when netlogon move across to the connection cache arrangement. Also add some smb_panics to the connection_ok() code to try to catch this kind of thing better in future. Andrew Bartlett | |||||
* | Don't try to sort a list of zero length in internal_resolve_name() | Tim Potter | 2002-03-19 | 1 | -1/+1 | |
| | ||||||
* | Merge in JohnR's page count fixes. | Jeremy Allison | 2002-03-19 | 4 | -8/+64 | |
| | | | | Jeremy. | |||||
* | Sync up vfs changes from 2.2.x. | Jeremy Allison | 2002-03-19 | 10 | -188/+68 | |
| | | | | Jeremy. | |||||
* | ops forgot this :-) | Simo Sorce | 2002-03-19 | 1 | -0/+8 | |
| | ||||||
* | more verbose checking in talloc and util_pw | Simo Sorce | 2002-03-18 | 6 | -90/+162 | |
| | | | | | fixed tdbsam memory corruption (and segfault) reducing calls to pdb_uid_to_user_rid and countrary to 0 to move to a non alghoritmic rid allocation with some passdb modules. | |||||
* | Start to switch away from the alghorithmic uid->rid mapping model | Simo Sorce | 2002-03-18 | 5 | -29/+179 | |
| | ||||||
* | Allow us to see the difference between these two errors. (We need to chase | Andrew Bartlett | 2002-03-18 | 1 | -1/+7 | |
| | | | | | | down some bugs with it...). Andrew Bartlett | |||||
* | preparing for release of 3.0-alpha17 | Samba Release Account | 2002-03-18 | 1 | -1/+1 | |
| | ||||||
* | Fix ability to compile with CUPS support. | John Terpstra | 2002-03-17 | 1 | -2/+2 | |
| | ||||||
* | Added dos_errstr() function. Not all errors in list yet. | Tim Potter | 2002-03-17 | 6 | -23/+99 | |
| | ||||||
* | Renamed get_nt_error_msg() to nt_errstr(). | Tim Potter | 2002-03-17 | 35 | -113/+113 | |
| | ||||||
* | Fix build for non-ads case | Jim McDonough | 2002-03-16 | 1 | -0/+5 | |
| | ||||||
* | Don't use // even temporarily, lest ye forget it and check it in... | Jim McDonough | 2002-03-16 | 1 | -3/+3 | |
| | ||||||
* | Change new style join function name for clarity in net_rpc.c | Jim McDonough | 2002-03-15 | 1 | -1/+1 | |
| | ||||||
* | Change net rpc join several ways: \n\t1) expose \n\t2) eliminate oldstyle ↵ | Jim McDonough | 2002-03-15 | 1 | -16/+17 | |
| | | | | subcommand \n\t3) try oldstyle first, then more secure method\n to allow for autodetect between ads and rpc on net join | |||||
* | Expose net_ads_join to allow for auto-transport-detection for net join | Jim McDonough | 2002-03-15 | 1 | -1/+1 | |
| | ||||||
* | Add autodetect for net join, as well as some more help updates | Jim McDonough | 2002-03-15 | 1 | -1/+18 | |
| | ||||||
* | Some help cleanups. Formatting and consistency issues. Line up text ↵ | Jim McDonough | 2002-03-15 | 5 | -83/+108 | |
| | | | | nicely, and make 'net help rap user' the same as 'net rap user help'...stuff like that | |||||
* | if our lock spin code fails then return the first error code, not the | Andrew Tridgell | 2002-03-15 | 1 | -4/+11 | |
| | | | | last one. This is what caused the lock1 and lock2 tests to fail. | |||||
* | the SEC_DOMAIN tests also apply to SEC_ADS | Andrew Tridgell | 2002-03-15 | 1 | -2/+2 | |
| |