| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Volker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
printmig.exe assumes that the LUID of the SeBackupPrivlege
on the target server matches the LUID of the privilege
on the local client. Even though an LUID is never guaranteed
to be the same across reboots. How *awful*! My cat could
write better code! (more on my cat later....)
* Set the privelege LUID in the global PRIVS[] array
* Rename RegCreateKey() to RegCreateKeyEx() to better match MSDN
* Rename the unknown field in RegCreateKeyEx() to disposition
(guess according to MSDN)
* Add the capability to define REG_TDB_ONLY for using the reg_db.c
functions and stress the RegXXX() rpc functions.
|
|
|
|
|
| |
Looking forward to the day he can commit these himself :-).
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
|
|
| |
safe for using our headers and linking with C++ modules. Stops us
from using C++ reserved keywords in our code.
Jeremy
|
|
|
|
|
|
|
| |
pathnames.
ie. files containing : and \ can be accessed from Linux.
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
|
|
|
|
|
| |
write_socket_data/read_socket_data
as they do nothing that write_socket/read_socket don't do. Add a more useful
error message when read_socket/write_socket error out on the main client fd
for a process (ie. try and list the IP of the client that errored).
Jeremy.
|
|
|
|
|
|
| |
printmig.exe work
* merge the sys_select_signal(char c) change from trunk
in order to keeo the winbind code in sync
|
| |
|
| |
|
|
|
|
|
|
|
| |
#ifdef'ed out.
Correct branch this time !
Jeremy.
|
|
|
|
| |
version to 3.0.20pre1
|
|
|
|
|
|
|
|
| |
timeout > 0. Better solution after much helpful input
from derrell@samba.org. We may eventually change the
read_socket_with_timeout() interface to count down the
timeout value.
Jeremy.
|
|
|
|
|
| |
discussed more on samba-technical.
Jeremy.
|
|
|
|
|
|
| |
the read using a timeout to ensure that all data for the packet is received.
2 some minor changes to meet coding standards
3 eliminate some compiler warnings
|
|
|
|
|
|
| |
Start of fix for #2735 - we are not mangling some
names we should. More fixes to follow.
Jeremy.
|
|
|
|
| |
* removing the testprns tool
|
|
|
|
|
|
| |
where large print jobs can have out-of-order offsets. Bug found
by Arcady Chernyak <Arcady.Chernyak@efi.com>
Jeremy.
|
| |
|
|
|
|
|
|
| |
<steven_ed4153@yahoo.com>.
Jeremy.
|
|
|
|
|
|
|
|
|
| |
map'. This
fixes a rather weird problem where an algorithmic SID ended up as the
replacement for %s.
Volker
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
compile on
trunk, 3_0 and 4_0.
Volker
|
| |
|
| |
|
|
|
|
| |
Volker
|
|
|
|
|
|
|
|
|
|
| |
a file
that is only included if _SAMBA_BUILD_ is defined...
Let's see how far this gets us.
Volker
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Volker to commit. Woo Hoo !
Jeremy.
|
| |
|
| |
|
|
|
|
| |
--enable-socket-wrapper to configure
|
|
|
|
|
|
| |
<ed.boraas@concordia.ab.ca>.
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
so our numbers don't get out of sync
|
|
|
|
|
|
|
| |
and one IRIX
stack backtrace bug.
Jeremy.
|
|
|
|
|
|
| |
--enable-developer=yes?
Volker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
pieces that
can be taken out of it, so I decided to commit this in one lump. It changes
the passdb enumerating functions to use ldap paged results where possible. In
particular the samr calls querydispinfo, enumdomusers and friends have
undergone significant internal changes. I have tested this extensively with
rpcclient and a bit with usrmgr.exe. More tests and the merge to trunk will
follow later.
The code is based on a first implementation by Günther Deschner, but has
evolved quite a bit since then.
Volker
|
|
|
|
|
|
|
|
| |
initializable
statically.
Volker
|
|
|
|
|
|
| |
Bakeyev <timur@com.bat.ru>
Jeremy.
|
|
|
|
|
|
| |
what you meant to change?
Fix build breakage....
|
|
|
|
| |
were comparing an integer to a pointer and it was right.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
to search in tdbs in a way that is not upgrade-safe and somewhat weird
to use: Users have to modify policies like
pdbedit -P "maximum password policies (seconds since 1970)"
The value-description should better go into the manpage.
Guenther
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. using smbc_getxattr() et al, one may now request all access control
entities in the ACL without getting all other NT attributes.
2. added the ability to exclude specified attributes from the result set
provided by smbc_getxattr() et al, when requesting all attributes,
all NT attributes, or all DOS attributes.
3. eliminated all compiler warnings, including when --enable-developer
compiler flags are in use. removed -Wcast-qual flag from list, as that
is specifically to force warnings in the case of casting away qualifiers.
Note: In the process of eliminating compiler warnings, a few nasties were
discovered. In the file libads/sasl.c, PRIVATE kerberos interfaces
are being used; and in libsmb/clikrb5.c, both PRIAVE and DEPRECATED
kerberos interfaces are being used. Someone who knows kerberos
should look at these and determine if there is an alternate method
of accomplishing the task.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"qualifiers". The
whole of samba comiles warning-free with the default compiler flags.
Temporarily defined -Wall to locate other potential problems. Found an
unused static function (#ifdefed out rather than deleted, in case it's
needed for something in progress).
There are also a number of uses of undeclared functions, mostly krb5_*.
Files with these problems need to have appropriate header files included,
but they are not fixed in this update.
oplock_linux.c.c has undefined functions capget() and capset(), which need
to have "#undef _POSIX_SOURCE" specified before including <sys/capability.h>,
but that could potentially have other side effects, so that remains uncorrected
as well.
The flag -Wall should be added permanently to CFLAGS, and all warnings then
generated should be eliminated.
|