| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| | |
dir listings. Added regression test in smbtorture (in HEAD) also.
Jeremy.
|
| |
| |
| |
| | |
Jeremy.
|
| |
| |
| |
| | |
Shouldn't we use dynamic debug classes here?
|
| |
| |
| |
| |
| |
| |
| | |
smbclient //server/share
ls /
on Samba and Windows 2000.
Jeremy.
|
| | |
|
| |
| |
| |
| | |
Jeremy.
|
| |
| |
| |
| | |
of the work to setup.py
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
write
import samba.tdbutil
samba.tdbutil.pack('f', ['hello'])
You need 'cvs update -d' to get the new subdirectory for this to build
properly.
|
| | |
|
| |
| |
| |
| |
| | |
sufficient to just pass the relevant variables to Python from the
Makefile. Therefore, remove setup.py.in.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
add the printing msg flag, only remove it. Also, we already
refcount the printer backchannel connection to add the connection
tdb flag just before after we register/deregister the notification
message handler.
Jerry please check !
Jeremy.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
get linked for the appropriate version.
|
| |
| |
| |
| |
| | |
makefile-equivalent (setup.py). Remember to do "cvs update -d" to get
the new directory.
|
| |
| |
| |
| | |
built by default.
|
| | |
|
| |
| |
| |
| |
| | |
Let the cli_spoolss function return invalid info level error rather
than checking for it ourselves.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
know how to decode a printer driver into a DRIVER_INFO_6 structure.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
pollute standard options namespace too much
changed also the mode options to be indipendente boolean values, make it easier to understand how to configure them
eg:
vfs_recycle_bin:keeptree=yes
vfs_recycle_bin:versions=yes
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
only this file, and not any others. It includes the function prototypes.
(Forgot to commit with earlier patch)
Andrew Bartlett
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The global winbind file descriptor can cause havoc in some situations -
particulary when it becomes 0, 1 or 2. This patch (based on some very nice
work by Hannes Schmidt <mail@schmidt-net.via.t-online.de>) starts to recitfy
the problem by ensuring that the close-on-exec flag is set, and that we move
above 3 in the file descriptor table.
I've also decided that the PAM module can close it's pipe handle on every
request - this isn't performance-critical code.
The next step is to do the same for nss_winbind. (But things like getent()
might get in our way there).
This also cleans up some function prototypes, puts them in just one place.
Andrew Bartlett
|
| |
| |
| |
| |
| |
| |
| | |
reflect the new example/VFS/ directory organization
lib/substitue.c:
added helper functions needed by recycle bin
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
merged in modifications made my differnt people, cleaned up things, yet some work todo
the code works but there are still some cases to be handled properly
Makefile.in:
this one seem much simpler and effective than the previous hack with file inclusion
it should also be more portable
we still need to find a solution to support multiple platforms or go back to libtool
|
| |
| |
| |
| |
| |
| |
| |
| | |
#ifdef mess...) in readline.c, we don't need or use them in the rest of Samba.
(This OK was of course conditional on 'if you break it, you better fix it...')
Andrew Bartlett
|
| |
| |
| |
| |
| |
| | |
Oh well, here it is...
Andrew Bartlett
|
| |
| |
| |
| |
| |
| | |
later.
simo
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Rafal Szczesniak <mimir@diament.ists.pwr.wroc.pl>
It includes a conversion of make_user_info*() to NTSTATUS and some minor
changes to other files.
It also picks up on a nasty segfault that can occour in some security=domain
cases.
Andrew Bartlett
|
| | |
|
| |
| |
| |
| |
| |
| | |
Debate about extending this policy welcomed on samba-technical.
Andrew Bartlett
|
| |
| |
| |
| | |
the end of configure.
|
| |
| |
| |
| | |
SAM_ASSERT if we are not going to crash.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
of my own changes.
In particular: I've added a SAM_ASSERT macro. This expands to either
SMB_ASSERT() (which should help us track down bugs) or a return of
NT_STATUS_CHECK_FAIL.
Metze's changes are mostly to bring the code into line with current discussions
on things like adding users/groups, flags etc.
I've adjusted a fair bit of the 'const' in the SAM stuff. Const is currently
used only for pointers, not for local variables or non-pointer paramters. The
benifits and reasons for extending this further need discussion on
samba-technical.
Also, some of the 'context' paramters should not be const, to allow backend
modules to do fancy caching etc in them.
Andrew Bartlett
|
| | |
|
| |
| |
| |
| | |
commit changes to NTLMSSP flags.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
to extend the ADS_STATUS system to include NTSTATUS, and to provide a better
general infrustructure for his sam_ads work.
I've also added some extra failure mode DEBUG()s to parts of the code.
NOTE: The ADS_ERR_OK() macro is rather sensitive to braketing issues - without
the final set of brakets, the test is essentially inverted - causing some
intersting 'error = success' messages...
Andrew Bartlett
|