| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
The conversion from EJS to python I did with Jelmer this morning was
not quite complete, due mostly to the difference between print in EJS
and python (python implies a newline).
Andrew Bartlett
|
|
|
|
|
|
|
| |
This is needed for things such as to load modules, like the
paged_searches module.
Andrew Bartlett
|
|
|
|
|
|
|
|
|
|
|
| |
This simplifies the code, removes presumptions about being the only
control in the reply, and allows it to function against Windows 2008.
For searches which did not require a paged result, the module was
simply returning a failure when the compleated search did not include
a paged result control.
Andrew Bartlett
|
|\ |
|
| |
| |
| |
| | |
metze
|
| |
| |
| |
| | |
metze
|
| |
| |
| |
| |
| |
| | |
This will replace source4/lib/socket/.
metze
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
backend
The vfs_unixuid module changes the uid of the process when executing
operations on behalf of the user. Within the VFS backend we may rely
on semi-async calls, such as winbind calls, which will call the event
loop again. To cope with this we need to ensure that while inside
those calls we revert the uid to root, then revert back to the
connected user when we have finished with the semi-async calls.
|
| |
| |
| |
| | |
Also tweak how the dialect array and count is initialized.
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| |
| |
| | |
Kai, please check.
Guenther
|
| |
| |
| |
| |
| |
| | |
sorry, I could swear this did compile...
Guenther
|
| |
| |
| |
| | |
Still investigating.
|
| |
| |
| |
| |
| |
| | |
Also submitted a request to cifs-protocol for a real name for this
thing. Use win7 target logic in smb2 lock test, SMB2-LOCK now passes
against Win7.
|
| |
| |
| |
| |
| | |
Negotiate 2.1 if possible, leave negotiate results in
transport->negotiate.dialect_revision.
|
| |
| |
| |
| | |
metze
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| | |
Guenther
|
| |
| |
| |
| |
| |
| |
| | |
And also intialize the variable. This fixes ./autogen.sh
in the merged build for me.
metze
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is made up of 4 parts:
1) change our schema to include the parentGUID attribute type
2) in the add hook in the objectclass module, get the objectGUID of
the parent and add it to the message as parentGUID
3) in the rename hook in the objectclass module, get the objectGUID
of the new parent, and insert an async modify request after the
renmam is done
4) added a simple test suite
|
| |
| |
| |
| |
| |
| |
| |
| | |
The clients that do only lanman auth are on their way out, the
passwords are case insensitive, it does not support unicode and we
should not store such a poor hash of the password if we can avoid it.
Andrew Bartlett
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | |\ \ |
|
| | | |/
| | |/| |
|
| |\ \ \
| | | |/
| | |/| |
|
| | |/ |
|
| | |
| | |
| | |
| | | |
Guenther
|
| | |
| | |
| | |
| | | |
metze
|
| | |
| | |
| | |
| | |
| | |
| | | |
The problem is that the shell eats the quotes in -DFOO="foo, bar, NULL"
metze
|
| | |
| | |
| | |
| | | |
metze
|
| | |
| | |
| | |
| | | |
metze
|
| | |
| | |
| | |
| | | |
metze
|
| | |
| | |
| | |
| | |
| | | |
This avoids problems with embedded control characters in password
changes
|
| | |
| | |
| | |
| | | |
This one added 3 spaces to the end of any new passwords
|
| | |
| | |
| | |
| | |
| | | |
This fixes the problem with the setpassword command failing like this:
Error: First line of ldif must be a dn not ' dn'
|
| |/
| |
| |
| | |
metze
|
| |
| |
| |
| |
| |
| |
| |
| | |
Extended operations return was not going thorugh the same patch as others
leaving the ctx around. Plus we were neutralizing the spy too early so that it
didn't set the request_terminated flag as it should have.
This should hopefully fix the failures in the build farm.
|
| |
| |
| |
| |
| |
| | |
The Samba3 internal notify code doesn't work correctly when there is
more than one tree connect to the same smbd process. This change to
the RAW-NOTIFY test triggers the bug.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In some code paths ltdb_context was still referenced even after we were returned
an error by one of the callbacks. Because the interface assumes that once an
error is returned the ldb_request may be freed, and because the ltdb_context was
allocated as a child of the request, this might cause access to freed memory.
Allocate the ltdb_context on ldb, and keep track of what's going on with the
request by adding a spy children on it. This way even if the request is freed
before the ltdb_callback is called, we will safely free the ctx and just quietly
return.
|