summaryrefslogtreecommitdiffstats
path: root/source/client
Commit message (Collapse)AuthorAgeFilesLines
* Add static to satisfy exotic compilersJelmer Vernooij2003-03-241-1/+1
|
* Revoke some of the popt patch from metze I applied earlier today. It addedJelmer Vernooij2003-03-241-1/+2
| | | | some double options and broke some parameters.
* Patch from metze to generalise POPT_COMMON_SAMBA, with some minor changesJelmer Vernooij2003-03-241-11/+5
|
* Don't declare variables after instructionsJelmer Vernooij2003-03-231-12/+12
|
* Convert to popt.Jelmer Vernooij2003-03-221-361/+85
|
* - Make ReadDirName return a const char*.Andrew Bartlett2003-03-161-1/+1
| | | | | | | | - Consequential changes from that - mark our fstring/pstring assumptions in function prototypes Andrew Bartlett
* Checkin cifs vfs for Linux mount helperSteve French2003-03-151-43/+211
|
* If the server went away, don't segfault by attempting to FD_SET -1.Andrew Bartlett2003-03-151-0/+3
| | | | Andrew Bartlett
* 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
* Add early prototype of cifs mount helper for LinuxSteve French2003-03-071-0/+389
|
* More safe_strcpy() off-by-one bug fixes. (mostly moves to pstrcpy()/fstrcpy())Andrew Bartlett2003-03-062-27/+27
| | | | Andrew Bartlett
* Do my janitorial duties to encourage others to do so.Richard Sharpe2003-03-031-6/+7
| | | | Fix lingering large offset problems in smbtar etc.
* Fix breakage done by myself yesterday.Tim Potter2003-02-251-6/+3
|
* Fixed up some const related compiler warnings.Tim Potter2003-02-251-3/+6
|
* The cli_send_tconX code already determines to send \\server\share to port 139Andrew Bartlett2003-02-181-18/+3
| | | | | | | | and share to 445, so doing this only confuses the issue (sending \\server\\server\share to 139) and makes debugging specific error codes more difficult. Andrew Bartlett
* fix dumb perror used without errno beeing set.Simo Sorce2003-02-151-2/+2
| | | | thanks to RedHat developers for the report
* Antti Andreimann <Antti.Andreimann@mail.ee> has done some changes to enableAndrew Bartlett2003-02-152-6/+44
| | | | | | | | | | | | | | | | | | | | | | | | | users w/o full administrative access on computer accounts to join a computer into AD domain. The patch and detailed changelog is available at: http://www.itcollege.ee/~aandreim/samba This is a list of changes in general: 1. When creating machine account do not fail if SD cannot be changed. setting SD is not mandatory and join will work perfectly without it. 2. Implement KPASSWD CHANGEPW protocol for changing trust password so machine account does not need to have reset password right for itself. 3. Command line utilities no longer interfere with user's existing kerberos ticket cache. 4. Command line utilities can do kerberos authentication even if username is specified (-U). Initial TGT will be requested in this case. I've modified the patch to share the kinit code, rather than copying it, and updated it to current CVS. The other change included in the original patch (local realms) has been left out for now. Andrew Bartlett
* Fix typo in WIFSIGNALED (as per Waider's report)Alexander Bokovoy2003-02-131-1/+1
|
* waitstatus audit: Correctly handle case where smbmnt is killed by aMartin Pool2003-02-131-0/+3
| | | | signal. Previously this was incorrectly treated as success.
* Samba janitors: applying mbp's redundant umask fix.Jeremy Allison2003-02-071-4/+0
| | | | Jeremy.
* smb signing compile fixTim Potter2003-02-021-1/+1
|
* More signing updates - start checking that the server isn't being spoofed.Andrew Bartlett2003-02-021-0/+3
| | | | Andrew Bartlett
* Add FIXME about dodgy argument parser.Martin Pool2003-01-201-0/+11
|
* s/WIFSIGNALLED/WIFSIGNALED/gGerald Carter2003-01-151-1/+1
|
* One more from waitpid() audit: Correctly interpret waitstatus when aMartin Pool2003-01-151-1/+5
| | | | | child fails. Possibly this was causing smbmount to exit(0) when it really should have indicated a failure.
* Fix a number of client-side fstring/pstring mixups.Andrew Bartlett2003-01-111-1/+1
| | | | Andrew Bartlett
* Added code to the handling of the -M option to ensure that we default toChristopher R. Hertel2003-01-071-4/+10
| | | | | port 139 for that option. The NetBIOS Messenger Service doesn't run on a non-NBT port.
* BIG patch...Andrew Bartlett2003-01-023-10/+10
| | | | | | | | | | | | | | | | 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
* merge from 2.2 fix for smbclient large filesHerb Lewis2002-12-191-18/+18
|
* merge smbtar fixes from 2.2Herb Lewis2002-12-161-6/+8
|
* fix stat reporting on put commandHerb Lewis2002-12-051-1/+1
|
* Link less with smbmnt and smbumount. Also change from a pstrcpy() to aAndrew Bartlett2002-12-011-1/+2
| | | | | | strncpy() to make it clear that we must operate on a PATH_MAX sized buffer. Andrew Bartlett
* Sorry Jim we can't assign to global_xxx(), we need to call set_global_xxx()Jeremy Allison2002-11-131-1/+1
| | | | | to ensure the malloc is done. Jeremy.
* Bring smbmount.c in line with jra's global-cide. global_scope was used here...Jim McDonough2002-11-131-2/+1
|
* Removed global_myworkgroup, global_myname, global_myscope. Added liberalJeremy Allison2002-11-122-19/+14
| | | | | | dashes of const. This is a rather large check-in, some things may break. It does compile though :-). Jeremy.
* Kill append_log from smbmount (thanks vance for reminding me).Andrew Bartlett2002-11-091-2/+0
| | | | Andrew Bartlett
* Move testsmbc.c to examplesJelmer Vernooij2002-11-041-455/+0
|
* Don't encourage people to use -P - it's obsoleteJelmer Vernooij2002-10-181-1/+0
|
* Added new error codes. Fix up connection code to retry in the same wayJeremy Allison2002-10-171-1/+1
| | | | | that app-head does. Jeremy.
* Patch from Steve Langasek <vorlon@netexpress.net> to use nice big integers whenAndrew Bartlett2002-10-031-4/+4
| | | | | | | attempting to calculate the bytes/second being transferred. (Avoid overflow etc) Andrew Bartlett
* Make sure that variable does not shadow a parameter.Richard Sharpe2002-09-291-6/+6
|
* Commit a fix to smbclient so that it will connect to EMCs and NetApp's machines.Richard Sharpe2002-09-281-3/+18
|
* Don't uppercase the username and domain in a session setup.Tim Potter2002-09-231-2/+0
|
* Fixed a little, long standing bug: smbclient -M <name> should resolveVolker Lendecke2002-09-051-3/+8
| | | | | | name#03, not name#20. Volker
* fix wrong checkSimo Sorce2002-08-281-1/+1
|
* Remove strsep - non portable.Jeremy Allison2002-08-271-2/+2
| | | | Jeremy.
* add a trivial seeking function to xfile (tseek) that does not do SEEK_CURSimo Sorce2002-08-271-22/+116
| | | | | | and add commands reget and reput to smbclient that continues a transfer that has been onterrupted. thanks to josef Zlomek that did the original patch.
* fix typosSimo Sorce2002-08-201-2/+2
| | | | thanks Josef Zlomek
* Fix the %m security bug again - and try to make it harder to reintroduce inAndrew Bartlett2002-08-101-2/+1
| | | | | | | | | | | future. This moves us from fstrcpy() and global variables to 'get' and 'set' functions. In particular, the 'set' function sainity-checks the input, in the same way as we always have. Andrew Bartlett
* fix for smbtar filename matchingAndrew Tridgell2002-07-281-1/+1
| | | | samba-patches 852