summaryrefslogtreecommitdiffstats
path: root/source3/client
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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 (This used to be commit 49d9698ef08d66dc238b2e3469da8944b444dfa1)
| * 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. (This used to be commit e57853000aacc61ba3c73907a7afb85385b378c3)
| * Bring smbmount.c in line with jra's global-cide. global_scope was used here...Jim McDonough2002-11-131-2/+1
| | | | | | | | (This used to be commit 5170a9f7ffac93c619358353834bc3024a6746d2)
| * 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. (This used to be commit 82b8f749a36b42e22186297482aad2abb04fab8a)
| * Kill append_log from smbmount (thanks vance for reminding me).Andrew Bartlett2002-11-091-2/+0
| | | | | | | | | | Andrew Bartlett (This used to be commit 7501b2a51835bae005d2ac015c3a428eaadce032)
| * Move testsmbc.c to examplesJelmer Vernooij2002-11-041-455/+0
| | | | | | | | (This used to be commit fdd70614d2dc29f6a676c30e254a0bf024687fb4)
| * Don't encourage people to use -P - it's obsoleteJelmer Vernooij2002-10-181-1/+0
| | | | | | | | (This used to be commit 59ecac901a231383bd4cacb326724f786e3d7244)
| * Added new error codes. Fix up connection code to retry in the same wayJeremy Allison2002-10-171-1/+1
| | | | | | | | | | | | that app-head does. Jeremy. (This used to be commit b521abd86b10573ca8f9116907c81e6deb55f049)
| * 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 (This used to be commit cd41e5ab857a33e05fa231756ff15707f2f5ce23)
| * Make sure that variable does not shadow a parameter.Richard Sharpe2002-09-291-6/+6
| | | | | | | | (This used to be commit d83cae2bbd1625aeb3b7c73ba8dde2d1371e7f89)
| * Commit a fix to smbclient so that it will connect to EMCs and NetApp's machines.Richard Sharpe2002-09-281-3/+18
| | | | | | | | (This used to be commit 1e4ac9615d26bfbf90e3a45f088564f448f689ce)
| * Don't uppercase the username and domain in a session setup.Tim Potter2002-09-231-2/+0
| | | | | | | | (This used to be commit 0ad19825df318030b1772404570cd993fe49e40a)
| * Fixed a little, long standing bug: smbclient -M <name> should resolveVolker Lendecke2002-09-051-3/+8
| | | | | | | | | | | | | | name#03, not name#20. Volker (This used to be commit 99017e887e4189ac7f6e3b7df08f028dc155191e)
| * fix wrong checkSimo Sorce2002-08-281-1/+1
| | | | | | | | (This used to be commit cb0ed2faa5ed9163421a0f58d45bcd7ec38f06ec)
| * Remove strsep - non portable.Jeremy Allison2002-08-271-2/+2
| | | | | | | | | | Jeremy. (This used to be commit 03c49b2e519acb8cc7278ac97a203a7d122d2869)
| * 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. (This used to be commit b275547c9ecc13bede5bd21a392fa1d695a3926d)
| * fix typosSimo Sorce2002-08-201-2/+2
| | | | | | | | | | thanks Josef Zlomek (This used to be commit fb32fd99b9878db2bacf0588d30fd5f1f37dbfd7)
| * 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 (This used to be commit e57a896f06b16fe7e336e1ae63a0c9e4cc75fd36)
| * fix for smbtar filename matchingAndrew Tridgell2002-07-281-1/+1
| | | | | | | | | | samba-patches 852 (This used to be commit e2558baa32657a71fd7e0958446f72e373cfadc9)
| * Looks like I missed this earlier. We should connect as the specified workgroupAndrew Bartlett2002-07-211-1/+1
| | | | | | | | | | | | | | | | | | | | - sombody using smbspool won't always have a full smb.conf, and this is how it was written in the first place anyway. Again, found by the IRIX compiler. Andrew Bartlett (This used to be commit 31181158766cd5f0e8409854f3c304f6fb46582b)
| * More fixes towards warnings on the IRIX compilerAndrew Bartlett2002-07-201-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | (and yes, some of these are real bugs) In particular, the samr code was doing an &foo of various types, to a function that assumed uint32. If time_t isn't 32 bits long, that broke. They are assignment compatible however, so use that and an intermediate variable. Andrew Bartlett (This used to be commit 30d0998c8c1a1d4de38ef0fbc83c2b763e05a3e6)
| * Make smbmnt a standalone program from a linker point of view. Hopefully thisAndrew Bartlett2002-07-131-2/+2
| | | | | | | | | | | | | | | | | | | | will make it easier to prove this package correct from an audit point of view. smbumount to follow, but it uses pstrcpy() so I'll need to decide what to do with that. Andrew Bartlett (This used to be commit 62c56f97248109ca80cc155974584bea9704cd50)
| * - fixed a crash bug for 'print -'Andrew Tridgell2002-07-132-3/+4
| | | | | | | | | | - removed an unused variable (This used to be commit 66af95716de470600b0db58bdf8a1f0c15dba036)
| * fixed a prototype problem in client.cAndrew Tridgell2002-07-021-0/+3
| | | | | | | | (This used to be commit 922ab73c3c8f510fdbcb8b64d54b512d32c47b75)
| * used findstatic.pl to make some variables static and remove some deadAndrew Tridgell2002-07-012-25/+25
| | | | | | | | | | code (This used to be commit 91ad9041e9507d36eb3f40c23c5d4df61f139ef0)
| * Update cli_full_connection() to take a 'flags' paramater, and try to get aAndrew Bartlett2002-06-251-57/+11
| | | | | | | | | | | | | | few more places to use it. Andrew Bartlett (This used to be commit 23689b0746d5ab030d8693abf71dd2e80ec1d7c7)
| * And another .cvsignoreAndrew Bartlett2002-06-251-0/+1
| | | | | | | | (This used to be commit fa0037a294a9faaf3cdc894e2ec1280dad157553)
| * Break up samba's object dependencies, and its prototype includes.Andrew Bartlett2002-06-252-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now smbclient, net, and swat use their own proto files - now the global proto.h The change to libads/kerberos.c was to break up the dependency on secrets.c - we want to be able to write an ADS client that doesn't need local secrets. I have other breakups in the works - I will remove the dependency of rpc_parse on passdb (and therefore secrets.c) shortly. (NOTE: This patch does *not* break up includes.h, or other such forbidden actions). Andrew Bartlett (This used to be commit edb41dad2df0ae3db364dbc3896cc75956262edf)
| * removed compiler warningGerald Carter2002-06-251-1/+1
| | | | | | | | (This used to be commit 73ba155a6bba150b5bd8385fd609ed7fea30f02f)
| * This removes --with-ssl from Samba.Andrew Bartlett2002-05-171-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option was badly maintained, useless and confused our users and distirbutors. (its SSL, therfore it must be good...) No windows client uses this protocol without help from an SSL tunnel. I can't see any reason why setting up a unix-side SSL wrapper would be any more difficult than the > 10 config options this mess added to samba in any case. On the Samba client end, I think the LIBSMB_PROG hack should be sufficient to start stunnel on the unix side. We might extend this to take %i and %p (IP and port) if there is demand. Andrew Bartlett (This used to be commit b04561d3fd3ee732877790fb4193b20ad72a75f8)
| * segfault fix merged from SAMBA_2_2Gerald Carter2002-05-141-3/+15
| | | | | | | | (This used to be commit d3388d195308cf7fba83734424e78b5248786af5)
* | More janitorial duties, fixing the BIG_UINT changes for large offsets.Richard Sharpe2003-03-031-5/+6
| | | | | | | | (This used to be commit 1af39523cc3b2313f3e8acd4f2e5338182ec0b13)
* | Cleint-side-auth/kerberos fixes from HEAD, and don't connect to a shareAndrew Bartlett2003-02-242-24/+64
| | | | | | | | | | | | | | twice, let the libsmb code determine what form the share name should take. Andrew Bartlett (This used to be commit a25f6126647c94551c03bfc28e3fb5ec5ef6264a)
* | fix dumb perror used without errno beeing set.Simo Sorce2003-02-151-2/+2
| | | | | | | | | | thanks to RedHat developers for the report (This used to be commit e257141c9b3703ef73ee312f3ec30d377e0d3293)
* | Samba janitors: applying mbp's redundant umask fix.Jeremy Allison2003-02-071-4/+0
| | | | | | | | | | Jeremy. (This used to be commit b54f6bf06c6a4032ba0d6c2a25699948685ccf6a)
* | s/WIFSIGNALLED/WIFSIGNALED/gGerald Carter2003-01-151-1/+1
| | | | | | | | (This used to be commit dc6cda595179b8c53f15d4bc92faf782f3e2d482)
* | *lots of small merges form HEADGerald Carter2003-01-151-1/+5
| | | | | | | | | | | | | | *sync up configure.in *don't build torture tools in make all *make sure to remove torture tools as part of make clean (This used to be commit 0fb724b3216eeeb97e61ff12755ca3a31bcad6ef)
* | Merge from HEAD:Andrew Bartlett2003-01-141-4/+4
| | | | | | | | | | | | | | | | | | | | - fstring/pstring mixups - the detection code that found them (disabled) - a bit of whitespace - a static Andrew Bartlett (This used to be commit 9b70fa868e7d9481f584c83fc4046174e1dedfd9)
* | Added code to the handling of the -M option to ensure that we default toChristopher R. Hertel2003-01-071-1/+7
| | | | | | | | | | | | port 139 for that option. The NetBIOS Messenger Service doesn't run on a non-NBT port. (This used to be commit a10195b7112b0a7cca3ddb5be2566364c59fefb7)
* | Merge from HEAD - make Samba compile with -Wwrite-strings without additionalAndrew Bartlett2003-01-033-10/+10
| | | | | | | | | | | | | | warnings. (Adds a lot of const). Andrew Bartlett (This used to be commit 3a7458f9472432ef12c43008414925fd1ce8ea0c)
* | merge from 2.2 fix for smbclient large filesHerb Lewis2002-12-191-18/+18
| | | | | | | | (This used to be commit 17f685fdbf5d36f82e3da0a09457f5e248b3f109)
* | merge smbtar fix from 2.2Herb Lewis2002-12-161-6/+8
| | | | | | | | (This used to be commit 41188337c3fa8c716dc7a4721ee5c31e5ddd928d)
* | Updating changes from HEAD.John Terpstra2002-12-101-1/+2
| | | | | | | | (This used to be commit 20efb6252cd95fe9ce08298cfdd29d975a53f241)
* | fix stat reporting on put commandHerb Lewis2002-12-051-1/+1
| | | | | | | | (This used to be commit aa38aaf36338a2c9e708410d6b1befa6d65c93cc)
* | 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. (This used to be commit 57f7ab45b783f64a3f3337a893ba3ddef953c133)
* | Bring smbmount.c in line with jra's global-cide. global_scope was used here...Jim McDonough2002-11-131-2/+1
| | | | | | | | (This used to be commit 79a0f2c2519b0503a8323fd0babfd18ec59b8d5e)
* | 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. (This used to be commit f755711df8f74f9b8e8c1a2b0d07d02a931eeb89)
* | Remove testsmbc.c from source/ in 3.0 as well. It's already in examples/Jelmer Vernooij2002-11-101-455/+0
| | | | | | | | (This used to be commit c1b3cffb3f2087cfb4848ebca72e482c79ac0b6f)
* | Merge append_log fix from HEADAndrew Bartlett2002-11-091-2/+0
| | | | | | | | (This used to be commit 2e338654170cecf5cc46b75958242a4732e1cd3f)
* | Sync with HEADJelmer Vernooij2002-11-091-4/+4
| | | | | | | | (This used to be commit 1a25dc776ddc36de9a214e023becff1ceb10290c)