summaryrefslogtreecommitdiff
path: root/source3/client/smbmnt.c
AgeCommit message (Collapse)AuthorFilesLines
2008-01-25Fix bogus uninitialized variable warningsVolker Lendecke1-1/+1
(This used to be commit 71d6580c837adcc2cddcdff561f6fb09701501ee)
2008-01-23strtok -> strtok_rVolker Lendecke1-2/+3
(This used to be commit fd34ce437057bb34cdc37f4b066e424000d36789)
2007-12-04More pstring removal.Jeremy Allison1-6/+15
Jeremy. (This used to be commit 905943137c2dafca4dc946f9b1f133fc5542eb37)
2007-10-15Latest ipv6 changes broke (deprecated) smbmount, smbmnt and smbctoolGünter Kukkukk1-3/+3
In addition some cleanup has been done to avoid compiler warnings. (This used to be commit 29eb4d0e2d8ce4a0bd2a081265417684c8c69d6d)
2007-10-10r23801: The FSF has moved around a lot. This fixes their Mass Ave address.Andrew Tridgell1-2/+1
(This used to be commit 87c91e4362c51819032bfbebbb273c52e203b227)
2007-10-10r23779: Change from v2 or later to v3 or later.Jeremy Allison1-1/+1
Jeremy. (This used to be commit 407e6e695b8366369b7c76af1ff76869b45347b3)
2007-10-10r7835: Add the forgotten GPL header. This source code file is distributed ↵Volker Lendecke1-0/+14
with Samba and interfaces to the Linux kernel (both GPL programs), so it was always our (Paal-Kr. Engstad and Volker Lendecke) intent that this program is covered by the GPL. Volker (This used to be commit 72bc9de68646a8a9a4787d6681524f1a77cf2cdf)
2007-10-10r6634: merge smbmount malloc checker fixes from trunkGerald Carter1-0/+2
(This used to be commit ca678b9690c9487af7004c09e696ba0f11121683)
2007-10-10r5263: bug 2249: patch from Manuel Baena <mbaena@lcc.uma.es> to print error ↵Gerald Carter1-1/+2
message in fullpath() (This used to be commit 0f66db48b09adc5b78a10e5023604c333684cbb3)
2007-10-10r5207: patches from Jay Fenlason @ RedHat (scooped from their Fedora packages)Gerald Carter1-2/+2
(This used to be commit 9019a8436162d3606f6b8584701b0832cf5a7439)
2004-02-13urban's changes for nosuid,nodevGerald Carter1-1/+1
(This used to be commit ed46d9aef3b423f583475da77db672b685ddf531)
2003-08-20metze's autogenerate patch for version.hGerald Carter1-1/+1
(This used to be commit ae452e51b02672a56adf18aa7a7e365eeaba9272)
2003-08-06Get rid of MAXPATHLEN, move to standard PATH_MAX.Jeremy Allison1-2/+2
Jeremy. (This used to be commit 455ed2d51d86f39ce0fa6e6abca31a5425d2ea17)
2002-09-25sync'ing up for 3.0alpha20 releaseGerald Carter1-2/+2
(This used to be commit 65e7b5273bb58802bf0c389b77f7fcae0a1f6139)
2002-07-15updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell1-2/+2
(This used to be commit 03ac082dcb375b6f3ca3d810a6a6367542bc23ce)
2001-04-08Got "medieval on our ass" about adding the -1 to slprintf.Jeremy Allison1-1/+1
Jeremy. (This used to be commit 94747b4639ed9b19f7d0fb896e43aa392a84989a)
2001-03-10Sync up Urbans changes from 2.2 into HEAD.Jeremy Allison1-4/+42
Jeremy. (This used to be commit d0fcd9144363acb4136af9d82f25980bd837d73c)
1999-12-13first pass at updating head branch to be to be the same as the SAMBA_2_0 branchAndrew Tridgell1-109/+92
(This used to be commit 453a822a76780063dff23526c35408866d0c0154)
1998-09-28Two changes in this ball...Michael Warfield1-22/+12
1) Changes to smbmnt.c, smbmount.c, and smbumount.c allow them to compile on both RedHat 4.x (libc 4.x) systems and RedHat 5.x (glibc 2) systems. 2) Changes to Makefile.in and configure.in (and subsequently configure) are to configure for smbmount, smbumount, and smbmnt to compile. This adds a "--with(out)-smbmount" option to configure. Sanity checking is not present yet. You can specify this if you are not on linux, it just won't compile. (This used to be commit 8a4730f61923577b0bd9e09ef1a00538f7dfb0de)
1998-09-03Ok - this is the 64 bit widening check in. It changes the configureJeremy Allison1-1/+1
to check for stat64 and friends, and then changes much of Samba to use the data type SMB_OFF_T for file size information. stat/fstat/lstat/lseek/ftruncate have now become sys_stat etc. to hide the 64 bit calls if needed. Note that this still does not expose 64 bit functionality to the client, as the changes to the reply_xxx smb's are not yet done. This code change should make these changes possible. Still to do before full 64 bit-ness to the client: fcntl lock code. statfs code widening of dev_t and ino_t (now possible due to SMB_DEV_T and SMB_OFF_T types being in place). Let me know if wierd things happen after this check-in and I'll fix them :-). Jeremy. (This used to be commit 14500936c321d15995c963766aac67bf1f4e3824)
1998-09-01More abstraction of file system data types, to move to a 64Jeremy Allison1-2/+2
bit file interface for the NT SMB's. Created a new define, SMB_STRUCT_STAT that currently is defined to be struct stat - this wil change to a user defined type containing 64 bit info when the correct wrappers are written for 64 bit stat(), fstat() and lstat() calls. Also changed all sys_xxxx() calls that were previously just wrappers to the same call prefixed by a dos_to_unix() call into dos_xxxx() calls. This makes it explicit when a pathname translation is being done, and when it is not. Now, all sys_xxx() calls are meant to be wrappers to mask OS differences, and not silently converting filenames on the fly. Jeremy. (This used to be commit 28aa182dbffaa4ffd86047e608400de4b26e80eb)
1998-01-22This is *not* a big change (although it looks like one).Jeremy Allison1-1/+1
This is merely updating the Copyright statements from 1997 to 1998. It's a once a year thing :-). NO OTHER CHANGES WERE MADE. Jeremy. (This used to be commit b9c16977231efb274e08856f7f3f4408dad6d96c)
1998-01-22*** empty log message ***Volker Lendecke1-19/+17
(This used to be commit 1e1b0c80f84657f89ffcd4132887cd9f8a26885a)
1998-01-05the real source code for the smbfs utilities. Forgot to doVolker Lendecke1-0/+297
cvs add first. Volker (This used to be commit 65406a546e15e53fcb0b724d0df3bc56a784edff)