Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Renamed all the new_cli_netlogon_* functions to cli_netlogon_* | Tim Potter | 2002-07-21 | 6 | -23/+23 | |
| | | | | | | | | as they're no longer new! | |||||
* | | More use of intermediate variables to avoid issues with pointer size and casts. | Andrew Bartlett | 2002-07-21 | 1 | -9/+27 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Compilers do find bugs :-) | Andrew Bartlett | 2002-07-21 | 1 | -2/+1 | |
| | | | | | | | | | | | | | | This was a mixup between the enum type NSS_STATUS and a BOOL (extra test for equality). Andrew Bartlett | |||||
* | | And a little more 'const'. | Andrew Bartlett | 2002-07-20 | 2 | -3/+3 | |
| | | ||||||
* | | Don't try and sys_dup2(dbf->fd) if dbf == NULL. | Tim Potter | 2002-07-20 | 1 | -1/+1 | |
| | | ||||||
* | | Oops, my bad. I forgot to assign this, so lookupnames wasn't doing much :-) | Andrew Bartlett | 2002-07-20 | 1 | -0/+1 | |
| | | ||||||
* | | another intermediate checkin on the way to enumerating forms | Gerald Carter | 2002-07-20 | 5 | -38/+136 | |
| | | | | | | | | | | | | via the registry. There is a seg fault here which shouldn't bother anyone until I can get it fixed. I just need a check point in case I need to roll back to this version later on. | |||||
* | | More fixes towards warnings on the IRIX compiler | Andrew Bartlett | 2002-07-20 | 8 | -35/+46 | |
| | | | | | | | | | | | | | | | | | | | | | | | | (and yes, some of these are real bugs) In particular, the samr code was doing an &foo of various types, to a function that assumed uint32. If time_t isn't 32 bits long, that broke. They are assignment compatible however, so use that and an intermediate variable. Andrew Bartlett | |||||
* | | correctly declare global_myworkgroup to be the right size. | Andrew Bartlett | 2002-07-20 | 1 | -1/+1 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Try to fix up warnings - particularly on the IRIX 64 bit compiler (which had a | Andrew Bartlett | 2002-07-20 | 12 | -26/+40 | |
| | | | | | | | | | | | | | | | | distinction between uchar and char). Lots of const etc. Andrew Bartlett | |||||
* | | Add some const to try and get less warnings. | Andrew Bartlett | 2002-07-20 | 1 | -2/+3 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Make it clear that the 'service' isn't to be touched. (Make it const). | Andrew Bartlett | 2002-07-20 | 1 | -1/+1 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | Update the smbd reply code a little: | Andrew Bartlett | 2002-07-20 | 2 | -5/+25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | I don't like the idea of muliple netprots - becouse I see potential problems with people being able to maniplate internal samba variables. This applies in particular to remote names, so don't allow muliple session requests either. Also remove a pstrcpy() from the tcon code, we really don't need it. Andrew Bartlett | |||||
* | | Fix up char/uchar casts etc. Fix up comments on some of the password hash | Andrew Bartlett | 2002-07-20 | 2 | -12/+9 | |
| | | | | | | | | | | | | wrappers. Andrew Bartlett | |||||
* | | If we can't connect, make sure its a level 0 so we see it, and the reason. | Andrew Bartlett | 2002-07-20 | 1 | -1/+1 | |
| | | ||||||
* | | Move some startup time initialisation to server.c, so it is all in one place. | Andrew Bartlett | 2002-07-20 | 2 | -11/+11 | |
| | | | | | | | | | | | | | | | | I'm not sure that we need that "dummy" talloc init, but anyway... Also, add some 'const' to the table of smb reply functions. Andrew Bartlett | |||||
* | | Add support for duplicating stderr into our logfiles. | Andrew Bartlett | 2002-07-20 | 3 | -25/+35 | |
| | | | | | | | | | | | | | | | | | | | | | | This is for two things: To allow panic actions etc to pump out backtraces to stderr and to allow vangrind to put its stuff in a logfile - making it possible to debug smbd when launched from inetd. I've also cleaned up some of the duplicate names in procedures between smbd and nmbd. Andrew Bartlett | |||||
* | | Add support for a weird behaviour apparently used by Win9X pass-through | Andrew Bartlett | 2002-07-20 | 2 | -4/+19 | |
| | | | | | | | | | | | | | | | | | | | | authentication - we can have an NT hash in the LM hash feild. (I need to double-check this fix with tpot, who discovered it). Also remove silly casts back and forth between uchar and char. Andrew Bartlett | |||||
* | | Update the usage for smbgroupedit to document -d for 'description'. | Andrew Bartlett | 2002-07-20 | 1 | -0/+2 | |
| | | | | | | | | | | | | I think this one is due to metze. Andrew Bartlett | |||||
* | | Add a wrapper for dup2() to our system.c | Andrew Bartlett | 2002-07-20 | 1 | -0/+10 | |
| | | | | | | | | Andrew Bartlett | |||||
* | | NT_STATUS_UNSUCCESSFUL just gets clients confused - move to NO_LOGON_SERVERS | Andrew Bartlett | 2002-07-20 | 1 | -11/+11 | |
| | | | | | | | | | | | | | | | | | | | | becouse thats what Win2k gives when the PDC is down. Some of these might better go to other errors, but the Win2k text message for 'unsuccessful' is not particularly useful. (A device attached to the system is not functioning...) Andrew Bartlett | |||||
* | | enumeration of printers keys ( no data yet ) via the registry | Gerald Carter | 2002-07-20 | 5 | -34/+65 | |
| | | | | | | | | functions now works :-) | |||||
* | | fixed a logic error in the sorted_tree_find_child() routine | Gerald Carter | 2002-07-20 | 3 | -33/+69 | |
| | | | | | | | | | | that caused a valid search to fail. The printing registry view now works again. | |||||
* | | fixed seg fault in registry frontend caused by trying to | Gerald Carter | 2002-07-19 | 4 | -12/+23 | |
| | | | | | | | | use a destroyed TALLOC_CTX* | |||||
* | | Fixed a compiler warning. | Tim Potter | 2002-07-19 | 1 | -3/+3 | |
| | | ||||||
* | | Never ignore valgrind messages :-). Don't reference before the start | Jeremy Allison | 2002-07-19 | 1 | -1/+1 | |
| | | | | | | | | | | of a string.... Jeremy. | |||||
* | | * refactored registry operations some. subkey lists and | Gerald Carter | 2002-07-19 | 7 | -240/+488 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | registry values are now passed around in containers (REGSUBKEY_CTR & REGVAL_CTR) which each possess a TALLOC_CTX. * removed subkey_specific_fn() from REGISTRY_OPS. Is implemented in the form of a wrapper * temporarily broke the printing registry ops. * implemented inheritence for the data_p of nodes in a SORTED_TREE * All REGISTRY_KEY instances now store a valid REGISTRY_HOOK since the default REGOSTRY_OPS structure is stored in the root of the cache_tree. * Probably some other change I forgot.... T | |||||
* | | Allow trans2 and nttrans messages to be processed in oplock break state. | Jeremy Allison | 2002-07-19 | 2 | -5/+7 | |
| | | | | | | | | | | | | | | As noticed by Lev Iserovich <lev@ciprico.com> this seems to fix a problem with oplock breaks and Win2k, and we are protected from problems by existing code in trans2.c and nttrans.c Jeremy. | |||||
* | | Formatting fixup. Fix shadow warning. | Jeremy Allison | 2002-07-19 | 2 | -458/+461 | |
| | | | | | | | | Jeremy. | |||||
* | | fixed line buffer mode in XFILE | Andrew Tridgell | 2002-07-19 | 1 | -1/+1 | |
| | | | | | | | | thanks to tim for finding this bug | |||||
* | | Previous fix was incorrect. len in string_sub and all_string_sub is | Jeremy Allison | 2002-07-18 | 1 | -4/+4 | |
| | | | | | | | | | | | | number of *bytes*. >= check was correct, the len=0 case needed changing to len = ls + 1. Jeremy. | |||||
* | | Add useful VALGRIND #ifdef. | Jeremy Allison | 2002-07-18 | 1 | -0/+2 | |
| | | | | | | | | Jeremy. | |||||
* | | Prevent gcc warning about shadowed global "index". | Jeremy Allison | 2002-07-18 | 1 | -1/+1 | |
| | | | | | | | | Jeremy | |||||
* | | Don't crash on setfileinfo on printer fsp. | Jeremy Allison | 2002-07-18 | 1 | -1/+2 | |
| | | | | | | | | Jeremy. | |||||
* | | Fixed off-by-one in all_string_sub also. | Jeremy Allison | 2002-07-18 | 1 | -1/+1 | |
| | | | | | | | | Jeremy. | |||||
* | | Formatting fixups. | Jeremy Allison | 2002-07-18 | 1 | -66/+73 | |
| | | | | | | | | Jeremy. | |||||
* | | Another bug found by valgrind. Don't AND a src length of -1. | Jeremy Allison | 2002-07-18 | 1 | -1/+2 | |
| | | | | | | | | Jeremy. | |||||
* | | virtual registry framework with initial printing hooks. | Gerald Carter | 2002-07-18 | 11 | -335/+1329 | |
| | | ||||||
* | | The previous code would not allow things like string_sub(str, "\\", "/", 0). | Gerald Carter | 2002-07-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | It complained about an overflow of 0 bytes. Jeremy please check since you modified this last. | |||||
* | | Unneded extra check on len | Simo Sorce | 2002-07-18 | 1 | -1/+1 | |
| | | ||||||
* | | We have to look at the length before checking for "~" as the string | Jeremy Allison | 2002-07-18 | 1 | -3/+3 | |
| | | | | | | | | | | may be shorter than 6 chars. Caught by valgrind. Jeremy. | |||||
* | | Use of uninitialized variable caught by valgrind. | Jeremy Allison | 2002-07-18 | 1 | -1/+1 | |
| | | | | | | | | Jeremy. | |||||
* | | Gone back to explicit queue number passing as snum - removed encoding of | Jeremy Allison | 2002-07-17 | 9 | -287/+170 | |
| | | | | | | | | | | | | queueid in job number. This means we must have an internal tdb to store mapping from 16 bit RAP jobid's to 32 bit RPC jobids. Jeremy. | |||||
* | | Lanman print jobs are *16* bits, not 32. arggggh. Map them.... | Jeremy Allison | 2002-07-17 | 3 | -9/+88 | |
| | | | | | | | | Jeremy. | |||||
* | | print_jobid in the fsp struct should be uint32. | Jeremy Allison | 2002-07-16 | 1 | -1/+1 | |
| | | | | | | | | Jeremy. | |||||
* | | Use codepage 850 as a default for the dos character set. | Tim Potter | 2002-07-16 | 1 | -0/+3 | |
| | | | | | | | | Tridge, is this OK? | |||||
* | | Put printing tdbs in a subdirectory to prevent name collisions. | Jeremy Allison | 2002-07-16 | 1 | -1/+6 | |
| | | | | | | | | Jeremy. | |||||
* | | splitting off storage/retrieval routines for abstracting the | Gerald Carter | 2002-07-15 | 4 | -326/+366 | |
| | | | | | | | | registry view front end. Now to plug in the various hooks. | |||||
* | | preparing for release of 3.0-alpha18 | Samba Release Account | 2002-07-15 | 1 | -1/+1 | |
| | | ||||||
* | | fixed a number of real bugs found by warnings on the 64 bit irix compiler | Andrew Tridgell | 2002-07-15 | 5 | -11/+8 | |
| | |