summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * Reformat of reply.c before Volker's patch.Jeremy Allison2002-12-031-1059/+1029
| | | | | | | | Jeremy.
| * Rerun autoconf.Tim Potter2002-12-031-18889/+8987
| |
| * Defaulting python breaks the clean target it python isn't installed.Tim Potter2002-12-031-6/+3
| |
| * use FILE_MACRO instead of __FILE__Herb Lewis2002-12-037-60/+60
| | | | | | | | use FUNCTION_MACRO instead of __FUNCTION_
| * use the new IVAL_TO_SMB_OFF_T for file_info size memberHerb Lewis2002-12-031-4/+4
| | | | | | | | dir now shows correct size on large files
| * Support printer info 7, used for publishingJim McDonough2002-12-032-0/+79
| |
| * Stop using hardcoded key/value strings, be more forgiving of ↵Jim McDonough2002-12-031-70/+74
| | | | | | | | dsspooler/dsdriver info existence.
| * Stop using hacks for dns host/domain names.Jim McDonough2002-12-031-3/+5
| |
| * fns for retrieving dns host name and domain name (get rid of lp_realm hacks).Jim McDonough2002-12-031-0/+56
| |
| * Add defines for standard DsSpooler/DsDriver values that get published.Jim McDonough2002-12-031-0/+54
| |
| * Don't segfault when trying to delete a key when none exist.Jim McDonough2002-12-031-0/+2
| |
| * Fixed nasty bug where file writes with start offsets in the rangeJeremy Allison2002-12-034-23/+26
| | | | | | | | | | | | | | | | | | | | 0x80000000 -> 0xFFFFFFFF would fail as they were being cast from IVAL (uint32) to SMB_OFF_T (off_t or off64_t, both *signed* types). The sign extension would cause the offset to be treated as negative. Thanks to Herb for helping me track this one down (IRIX is good for large file tests :-). Jeremy. PS. That horrid EXEXIST thing has broken configure.....
| * Fixes for EXEEXT - must use \$ signs when you want an actual $ sign toTim Potter2002-12-031-4/+4
| | | | | | | | be used.
| * As per Jeremy's request back this out, so as to re-gain the implicit lengthAndrew Bartlett2002-12-011-7/+5
| | | | | | | | | | | | check. Andrew Bartlett
| * Link less with smbmnt and smbumount. Also change from a pstrcpy() to aAndrew Bartlett2002-12-012-5/+5
| | | | | | | | | | | | strncpy() to make it clear that we must operate on a PATH_MAX sized buffer. Andrew Bartlett
| * No need for fstring manipulation here (Tcon&X), just use string pointers.Andrew Bartlett2002-12-011-5/+7
| | | | | | | | Andrew Bartlett
| * Remove extra headers, and ensure that we correctly bail out of winbindd if weAndrew Bartlett2002-12-017-7/+7
| | | | | | | | | | | | can't create the socket. Andrew Bartlett
| * Dereference the correct thing here, so we don't segfaultAndrew Bartlett2002-12-011-1/+1
| |
| * Make it clear that we might not be talking to a PDC here.Andrew Bartlett2002-12-011-1/+1
| |
| * POSIX indicates that this is always in network byte order, so we don't need theAndrew Bartlett2002-12-011-5/+0
| | | | | | | | | | | | little-endian case (tested on Intel-linux). Andrew Bartlett
| * Patch from Paul Green to detect exe extensions, needed for Stratus VOS.Andrew Bartlett2002-12-013-8961/+18968
| | | | | | | | Andrew Bartlett
| * Fixup of ordered cleanup of get_dc_list - bug found by Dominik 'Aeneas' ↵Jeremy Allison2002-12-011-27/+10
| | | | | | | | | | | | Schnitzer <dominik@schnitzer.at> Jeremy.
| * Ignore ntlm_auth binary.Tim Potter2002-11-291-4/+5
| |
| * Fixed silly bug.Tim Potter2002-11-291-1/+1
| |
| * Rerun autoconf.Tim Potter2002-11-291-866/+872
| |
| * Fix up smbwrapper target.Tim Potter2002-11-292-1/+3
| |
| * merge in some changes from metze's patches (rest follows later, afterJelmer Vernooij2002-11-281-2/+2
| | | | | | | | some issues in the new module system have been resolved)
| * Add PDBLIBDIR, just like VFSLIBDIRJelmer Vernooij2002-11-281-3/+9
| |
| * Fix comment - 850 -> iso8859-1Jeremy Allison2002-11-271-1/+1
| | | | | | | | Jeremy.
| * Remove use of 'F' - make 'f' and 'p' do unix (iso8859-1) encoding.Jeremy Allison2002-11-271-10/+0
| | | | | | | | Jeremy.
| * Test was reversed for ERRmoredata in cli_read.Jeremy Allison2002-11-271-0/+10
| | | | | | | | Jeremy.
| * merging changes from SAMBA_3_0 relating to RPM packagingGerald Carter2002-11-273-20519/+9284
| |
| * removing inet_aton()Gerald Carter2002-11-271-1/+2
| |
| * fix cli_ds_getprimarydominfo(); merge from SAMBA_3_0Gerald Carter2002-11-271-1/+1
| |
| * After consultation with tpot, remove the 'winbind_domain' environmentAndrew Bartlett2002-11-265-47/+3
| | | | | | | | | | | | | | | | | | | | variable hack, the feild on the pipe, and the server-side. It only controlled some enum operations in any case. This is to try and have less 'magic' environment variables. Andrew Bartlett
* | merge of smbpasswd segfault from SAMBA_2_2Gerald Carter2002-12-121-7/+10
| |
* | Merge of #include <smb.h> removals.Tim Potter2002-12-125-5/+0
| |
* | Added "kernel change notify" boolean to allow easier valgrind testing.Jeremy Allison2002-12-122-1/+6
| | | | | | | | Jeremy.
* | Merge of compile tweaks for python tdbpack module.Tim Potter2002-12-122-2/+2
| |
* | Fixed auth module code. Added VALGRIND defines to reduce spurious warnings.Jeremy Allison2002-12-117-69/+85
| | | | | | | | Jeremy.
* | Fix write error returning EFBIG - found by Conrad.Jeremy Allison2002-12-111-0/+3
| | | | | | | | Jeremy.
* | Fix client reporting of 64 bit files.Jeremy Allison2002-12-103-5/+9
| | | | | | | | Jeremy.
* | Updating changes from HEAD.John Terpstra2002-12-101-1/+2
| |
* | fix broken incremental tar - merge from 2.2Herb Lewis2002-12-101-1/+2
| | | | | | | | found by "Jacob Anawalt" <anawaltaj@hotmail.com>
* | The _abs time functions should not be converting from/to GMT.Jeremy Allison2002-12-101-18/+11
| | | | | | | | | | Patch from "Jordan Russell" <jr-list-samba-technical@quo.to> Jeremy.
* | Fixed Typo.John Terpstra2002-12-081-1/+1
| |
* | fix rpcclient querygroup command (from 2.2 and head)Simo Sorce2002-12-083-374/+337
| |
* | Ensure global_scope() returns "", not the NULL string. Froma tpot fix.Jeremy Allison2002-12-062-1/+7
| | | | | | | | Jeremy.
* | Merge from HEAD:Tim Potter2002-12-055-25/+5
| | | | | | | | >Remove FILE_MACRO as __FILE__ is ANSI C.
* | Merge from HEAD:Tim Potter2002-12-052-10/+20
| | | | | | | | | | | | >FUNCTION_MACRO change broke the Python modules. > >Also fix up string pasting (I thought this should only be a warning?)