summaryrefslogtreecommitdiffstats
path: root/source/wrepld
Commit message (Collapse)AuthorAgeFilesLines
* Don't use old usage() function, but the one from popt.Jelmer Vernooij2003-03-241-12/+2
| | | | Remove some useless arguments
* Revoke some of the popt patch from metze I applied earlier today. It addedJelmer Vernooij2003-03-241-0/+1
| | | | some double options and broke some parameters.
* Patch from metze to generalise POPT_COMMON_SAMBA, with some minor changesJelmer Vernooij2003-03-241-6/+2
|
* Convert to popt.Jelmer Vernooij2003-03-231-85/+25
|
* Make sure that the 'remote' machine name can only be set once. For some weirdAndrew Bartlett2003-03-081-1/+1
| | | | | | | | | | | | reason, during a Win2003 installation, when you select 'domain join' it sends one machine name in the name exchange, and litraly 'machinename' during the NTLMSSP login. Also fix up winbindd's logfile handling, so that it matches smbd and nmbd. (This helps me, by seperating the logs by pid). Andrew Bartlett
* While the usage is most bisarre, this fixes up another fstring/pstring mixup.Andrew Bartlett2003-01-111-1/+2
| | | | | | (In this case, an fstrcpy() into a pstring, ie harmless). Andrew Bartlett
* patch to include support for daemontools from Michael HandlerGerald Carter2003-01-031-4/+21
|
* BIG patch...Andrew Bartlett2003-01-021-1/+1
| | | | | | | | | | | | | | | | This patch makes Samba compile cleanly with -Wwrite-strings. - That is, all string literals are marked as 'const'. These strings are always read only, this just marks them as such for passing to other functions. What is most supprising is that I didn't need to change more than a few lines of code (all in 'net', which got a small cleanup of net.h and extern variables). The rest is just adding a lot of 'const'. As far as I can tell, I have not added any new warnings - apart from making all of tdbutil.c's function const (so they warn for adding that const string to struct). Andrew Bartlett
* Forward port the change to talloc_init() to make all talloc contextsJeremy Allison2002-12-201-1/+1
| | | | | named. Ensure we can query them. Jeremy.
* Lots of fixes for error paths where tdb_fetch() data need freeing.Jeremy Allison2002-11-231-0/+3
| | | | | Found via a post from Arcady Chernyak <Arcady.Chernyak@efi.com>. Jeremy.
* Removed global_myworkgroup, global_myname, global_myscope. Added liberalJeremy Allison2002-11-121-27/+3
| | | | | | dashes of const. This is a rather large check-in, some things may break. It does compile though :-). Jeremy.
* Compleatly remove support for logfile truncation. All logs are opened forAndrew Bartlett2002-11-081-11/+0
| | | | | | | | append writes. (blessed by jra) Andrew Bartlett
* Make 'remote_machine' private to lib/substitute.c, and fix all the user to useAndrew Bartlett2002-08-111-2/+1
| | | | | | the new accessor functions. Andrew Bartlett
* found nasty bug in intl/lang_tdb.c tdb structure was not tested to not be ↵Simo Sorce2002-07-281-1/+1
| | | | | | | | | | | | null before close this one fixes swat not working with browsers that set more then one language. along the way implemented language priority in web/neg_lang.c with bubble sort also changet str_list_make to be able to use a different separator string Simo.
* fixed a number of real bugs found by warnings on the 64 bit irix compilerAndrew Tridgell2002-07-151-1/+1
|
* moved lp_list_* functions away from param/loadparm.c, put int lib/util_str.cSimo Sorce2002-06-141-2/+2
| | | | | and renamed to str_list_* as it is a better name. Elrond should be satisfied now :)
* Removed unused variable.Tim Potter2002-05-011-2/+0
|
* changed more DEBUG level from 0 to higher.Jean-François Micouleau2002-04-303-11/+11
| | | | J.F.
* some debug log changes, and fixed wrepld crashing when there is no winsJean-François Micouleau2002-04-301-28/+34
| | | | | | partners parameter in smb.conf J.F.
* this code has been sitting on one of my box for 3 months.Jean-François Micouleau2002-04-274-103/+262
| | | | | | | | | | add wins push replication, better handling of partners, rewrote half of parser. I know some parser code need to be changed to better cope with multihomed machine and groups. J.F.
* Make winbindd_idmap tdb endian independent. This is very important forJeremy Allison2002-03-211-2/+2
| | | | | | | | sharing between machines with rsync. Finally removed tdb_store_int/tdb_fetch_int. Now only tdb_store_int32/tdb_fetch_int32 which are endian independent are allowed. Jeremy.
* Fix from Michael Steffens <michael_steffens@hp.com> to make signalJeremy Allison2002-01-311-1/+1
| | | | | | processing work correctly in winbindd. This is a really good patch that gives full select semantics to the Samba modified select. Jeremy.
* Removed version number from file header.Tim Potter2002-01-306-12/+6
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* that's the wins replication daemon !Jean-François Micouleau2002-01-256-0/+2769
there are still some work to do on it but it's already functionnal. J.F.