| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
| | |
| | |
| | | |
gcc warnings about unused parameters.
|
| | |
| | |
| | |
| | |
| | |
| | | |
gcc warnings about unused parameters.
msg_pool_usage: assert msg_type is as expected.
|
| | |
| | |
| | |
| | |
| | | |
change the version number also.
Jeremy.
|
| | | |
|
| | |
| | |
| | |
| | | |
variable called 'free'.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- put in some level 10 debugs so we can see what internal_resolve_name()
is doing
- remove duplicates from returned ip list of internal_resolve_name()
|
| | |
| | |
| | |
| | |
| | | |
string in the loadparam Globals struct. Using pstrcpy was causing every
NULL string was being set to the name of the winbindd log file. (-:
|
| | |
| | |
| | |
| | |
| | | |
in tdb's. All except winbindd_idmap.... Hmmmmmm.
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is SO NASTY as some drivers need this to change, others need it
static. This value will change every second, and I must hope that this
is enough..... DON'T CHANGE THIS CODE WITHOUT A TEST MATRIX THE SIZE OF
UTAH !
Jeremy.
|
| | |
| | |
| | |
| | | |
All should be curent now.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
my files were not being checked in sometimes.....
cvs update -A
cleared all the sticky tages and now I have to recheck some things in.
j-
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This fixes a driver init bug.
Jeremy.
|
| | |
| | |
| | |
| | | |
- allow winbindd and wbinfo to build without shared libraries
|
| | |
| | |
| | |
| | |
| | | |
Roll on defined types :-).
Jeremy.
|
| | |
| | |
| | |
| | |
| | | |
enabled me to track down a *nasty* bug.
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | | |
code (one less global, hurrah !) - to allow NetBIOS aliasing to be used
with point and print.
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Should allow print servers to work with NetBIOS aliases.
Needs testing.
Jeremy.
|
| | |
| | |
| | |
| | | |
of commands when specified on command line.
|
| | | |
|
| | |
| | |
| | |
| | | |
- don't attempt to build winbindd if we can't do shared libs
|
| | |
| | |
| | |
| | | |
but a plain old uint32.
|
| | |
| | |
| | |
| | | |
(invalid handle) though. )-:
|
| | | |
|
| | |
| | |
| | |
| | | |
defined. This is done with --enable-developer mode.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
values returned from cli functions. They are converted to NTSTATUS codes
using the error map functions.
Do buffer size loop checks by setting offered = 0 and using the return
value of needed in the next call.
|
| | |
| | |
| | |
| | | |
Make the offered and needed buffer size into parameters.
|
| | |
| | |
| | |
| | | |
Patch from Alexander Bokovoy <a.bokovoy@sam-solutions.net>
|
| | |
| | |
| | |
| | |
| | | |
- converted OpenPrinterEx and ClosePrinter to WERROR instead of NT_STATUS
- doc
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
One day I'll get around to refactoring the DOS error handling so it mirrors
the NT error handling code.
|
| | | |
|
| | |
| | |
| | |
| | | |
to NT_STATUS_UNSUCCESSFUL according to AB's funky new error map.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Apparently (and I will doublecheck) its legal to do an annoymous session setup
when we negoitiated SPNEGO, but we can't do an authenticated one becouse we
didn't give a challange.
Andrew Bartlett
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The auth_authsupplied_info typedef is now just a plain struct - auth_context,
but it has been modified to contain the function pointers to the rest
of the auth subsystem's components.
(Who needs non-static functions anyway?)
In working all this mess out, I fixed a number of memory leaks and moved the
entire auth subsystem over to talloc().
Note that the TALLOC_CTX attached to the auth_context can be rather long-lived,
it is provided for things that are intended to live as long. (The
global_negprot_auth_context lasts the whole life of the smbd).
I've also adjusted a few things in auth_domain.c, mainly passing the domain as
a paramater to a few functions instead of looking up lp_workgroup(). I'm
hopign to make this entire thing a bit more trusted domains (as PDC) freindly
in the near future.
Other than that, I moved a bit of the code around, hence the rather messy diff.
Andrew Bartlett
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Also change the structure so it has its own (optional) 'free' pointer - so we
don't free() a talloc'ed version.
also split out the data_blob_clear() functionaility.
Andrew Bartlett
|
| | |
| | |
| | |
| | |
| | | |
This applies only to the NT->Dos map, I'm still trying to come up with a way to
do the reverse.
|