| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
| |
replacemnt of stdio that doesn't suffer from the 8-bit filedescriptor
limit that we hit with nasty consequences on some systems
I would eventually prefer us to have a configure test to see if we need
to replace stdio, but for now this code needs to be tested widely so
I'm enabling it by default.
|
| |
|
|
|
|
|
|
|
|
|
| |
which should now be used instead of DEBUG(0) or printf() for
interactive messages
I have only converted client.c to use d_printf(), and the code hasn't
had much testing yet. Eventually we want all interactive code to use
d_printf(), plus SWAT
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lib/smbpasswd.c which will contain routines related to manipulating
smbpasswd entries.
- renamed and moved pdb_{get,set}hexpwd() functions
- renamed and moved pdb_{decode,encode}acct_ctrl() functions
- started hiding references to the cruftalicious
NEW_PW_FORMAT_SPACE_PADDED_LEN constant
- started gradual rename of references to acct_ctrl to acb_info which is
the nomenclature used in MSDN and header files
There's still more work to be done. Currently there are several places
where smbpasswd entries are iterated etc. Ideally this should all happen
through the passdb system.
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
the client code still needs some work
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
to make it type incompatible with BOOL so we catch errors sooner. This has already found a number of bugs
|
|
|
|
|
|
| |
Syscalls must check for -1, not < 0 (POSIX).
Formating (tab) fixups.
Jeremy.
|
|
|
|
|
|
|
|
|
|
|
|
| |
My plan is to change the lp_wins_server() function to lp_wins_server_list().
My reason being: With WINS failover the 'wins server' parameter may take a
list of WINS server names/IPs instead of just one. If it's a list, then
calling lp_wins_server() won't give you what you expect (that is, a single
WINS server name or IP). Instead, the functions in wins_srv.c should be
used. You can get either the name or IP of the 'current' working WINS
server in the list.
Chris -)-----
|
|
|
|
|
|
|
|
| |
funky code that was simply setting a local int to 0 or 1 and also added
calls to strerror() in some of the debug lines.
The use of the dlevel parameter in this function is a little awkward.
There should probably be some comments about it in the source.
|
|
|
|
| |
break little-endian machines.
|
| |
|
| |
|
|
|
|
|
|
| |
in particular:
- fixed NT status code for a bunch of ops
- fixed handling of protocol levels in ms_fnmatch
|
|
|
|
| |
Jeremy.
|
| |
|
|
|
|
|
|
| |
many possible mem leaks, and segfaults fixed.
someone should port this fix to 2.2 also.
|
|
|
|
| |
Jeremy.
|
| |
|
|
|
|
|
|
|
| |
changed some code to exploit the fact that Realloc(NULL, size) == malloc(size)
fixed some possible mem leaks, or seg faults.
thanks to andreas moroder (mallocs not checked in client/client.c, client/smbumount.c)
|
|
|
|
|
| |
never commit without building.
sorry.
|
|
|
|
| |
thanks to andreas moroder
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
|
| |
Digital UNIX).
Jeremy.
|
| |
|
| |
|
|
|
|
| |
this gets rid of a bunch of iconv warnings
|
|
|
|
|
|
|
| |
P_LIST format.
changed functions to use list instead of strings
addedd lp_list_substitute function
|
|
|
|
|
| |
Fixed crash bug with un-zeroed talloced memory.
Jeremy.
|
|
|
|
|
|
| |
fixes some problems wih some character sets and allows for using
internal charsets in conjunction with ionv charsets
this makes us slower but more correct. speed will come later.
|
| |
|
|
|
|
|
|
| |
the screen. This mucks up expect something severe. )-:
Don't use readline if the CLI_NO_READLINE environment variable is set.
|
|
|
|
|
|
|
|
|
|
|
|
| |
new internal string stuff. The main problem is that some unicode strings
are null terminated and some aren't. There's no rhyme or reason to it -
some pipes have 99% of the strings terminated and some have 99%
unterminated. To avoid having to actually know the termination policy, I
propose a set of functions that take a UNISTR2* and use the length
contained there.
Added rpcstr_pull_unistr2_string() function to convert a unicode string of
dubious termination to a fstring.
|
| |
|
|
|
|
|
|
| |
we no longer lookup our own name when we create a socket in
open_socket_in(). That makes things work much better with the
broken DNS server at VA
|
|
|
|
| |
the initial uid
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The leg-work for this was done by the folks at samba-tng.org, I'm just bringing
it accross to HEAD.
The MD5 implementation is seperatly derived, and does not have the copyright
problems that the one in TNG has.
Also add const to a few places where it makes sence.
Andrew Bartlett
|
| |
|
|
|
|
| |
Jeremy.
|
| |
|
|
|
|
| |
otherwise initial load in smb.conf can fail
|