summaryrefslogtreecommitdiffstats
path: root/source3/torture/locktest.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixup a bunch of printf-style functions and debugs to use unsigned long whenTim Potter2003-07-221-1/+1
| | | | | | | displaying pid_t, uid_t and gid_t values. This removes a whole lot of warnings on some of the 64-bit build farm machines as well as help us out when 64-bit uid/gid/pid values come along. (This used to be commit f93528ba007c8800a850678f35f499fb7360fb9a)
* Reverse previous patch from Stefan and me after comments by Andrew BartlettJelmer Vernooij2003-05-101-2/+0
| | | | (This used to be commit d817eaf0ecca2d878ab1ffcf7a747a02d71c811e)
* Patch from metze and me that adds dummy smb_register_*() functions soJelmer Vernooij2003-05-101-0/+2
| | | | | | that is now possible to, for example, load a module which contains an auth method into a binary without the auth/ subsystem built in. (This used to be commit 74d9ecfe2dd7364643d32acb62ade957bd71cd0d)
* Missed a couple of files from the client-side kerberos mergeAndrew Bartlett2003-02-241-1/+4
| | | | (This used to be commit 56934f303c0551df858cc6d6ad32d0b37fcd1307)
* Merge from HEAD:Andrew Bartlett2003-01-141-8/+8
| | | | | | | | | | - fstring/pstring mixups - the detection code that found them (disabled) - a bit of whitespace - a static Andrew Bartlett (This used to be commit 9b70fa868e7d9481f584c83fc4046174e1dedfd9)
* Sync 3.0 branch with HEADJelmer Vernooij2002-08-171-1/+1
| | | | (This used to be commit d3599b446ed1c8ccd7c9e161ecfa5d52d6066c22)
* Renamed get_nt_error_msg() to nt_errstr().Tim Potter2002-03-171-2/+2
| | | | (This used to be commit 1f007d3ed41c1b71a89fa6be7d173e67e927c302)
* added -E and -Z options, and allow for the 2 servers to have differentAndrew Tridgell2002-03-101-33/+63
| | | | | usernames/passwords (This used to be commit 0ae4ba18e578d35206628fa29203c8becbbdc5cd)
* added -M option for minimum lock sizeAndrew Tridgell2002-03-051-4/+8
| | | | (This used to be commit 6acd98cbb92ec5c78686d23d2e05c1c98b5127fe)
* allow setting of lock range and base in locktestAndrew Tridgell2002-03-041-10/+14
| | | | (This used to be commit 97993630add4e8965f0395f92d34b0e8a6d9b875)
* added -k options for kerberos to smbtorture and locktestAndrew Tridgell2002-03-041-1/+14
| | | | (This used to be commit 46b89bc9979229abc6e9f2f8c585a22dd4f22902)
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header. (This used to be commit 6a58c9bd06d0d7502a24bf5ce5a2faf0a146edfa)
* fix a bunch of places where we can double-free a cli structureAndrew Tridgell2001-11-281-1/+0
| | | | (This used to be commit e2ba2383c9f679c076749a8f4fccefc3559e37ec)
* Got medieval on another pointless extern. Removed extern struct ipzeroTim Potter2001-11-261-3/+2
| | | | | | | | and replaced with two functions: void zero_ip(struct in_adder *ip); BOOL is_zero_ip(struct in_addr ip); (This used to be commit 778f5f77a66cda76348a7c6f64cd63afe2bfe077)
* Removed TimeInit() call from every client program (except for one placeTim Potter2001-11-231-2/+0
| | | | | | in smbd/process.c where the timezone is reinitialised. Was replaced with check for a static is_initialised boolean. (This used to be commit 8fc772c9e5770cd3a8857670214dcff033ebae32)
* fix locktest default parametersAndrew Tridgell2001-11-201-2/+3
| | | | (This used to be commit f6a4b00aab9ca01d8dfed33252f3d5c5349d13b0)
* Store some path names in global variables initialized to configureMartin Pool2001-11-191-2/+1
| | | | | default, rather than in preprocessor macros. (This used to be commit 79ec88f0da40faebe1e587f1b3e87b5f2b184f58)
* move to SAFE_FREE()Simo Sorce2001-09-171-2/+1
| | | | (This used to be commit fc71962409e11509a60fb2be6741c32970865881)
* Fix (I hope) for a number of little compile warnings found by the IRIXAndrew Bartlett2001-09-161-2/+2
| | | | | | | compilers on the build farm. Andrew Bartlett (This used to be commit 0ff0a91a6baf7cf6b3ca59a2b4067cc07e3f2f88)
* declare dbf in one spotAndrew Tridgell2001-09-101-1/+0
| | | | (This used to be commit f41c3bb80f1e498a9d27f6e236b0ff3a742764c9)
* replaced stdio in many parts of samba with a XFILE. XFILE is a cut-downAndrew Tridgell2001-09-101-2/+2
| | | | | | | | | | replacemnt of stdio that doesn't suffer from the 8-bit filedescriptor limit that we hit with nasty consequences on some systems I would eventually prefer us to have a configure test to see if we need to replace stdio, but for now this code needs to be tested widely so I'm enabling it by default. (This used to be commit 1af8bf34f1caa3e7ec312d8109c07d32a945a448)
* converted smbd to use NTSTATUS by defaultAndrew Tridgell2001-08-271-27/+75
| | | | | | | | | | | | | | | | | major changes include: - added NSTATUS type - added automatic mapping between dos and nt error codes - changed all ERROR() calls to ERROR_DOS() and many to ERROR_NT() these calls auto-translate to the client error code system - got rid of the cached error code and the writebmpx code We eventually will need to also: - get rid of BOOL, so we don't lose error info - replace all ERROR_DOS() calls with ERROR_NT() calls but that is too much for one night (This used to be commit 83d9896c1ea8be796192b51a4678c2a3b87f7518)
* fixed handling of 139/445 in clientsAndrew Tridgell2001-08-241-2/+1
| | | | (This used to be commit 22b372f8a7996a19bebb8cdb411df999cffa32a4)
* tests for 0 length locksAndrew Tridgell2001-08-241-15/+28
| | | | (This used to be commit 8fbd1d0f978a349ec4fcc0d34fca55314d3dec31)
* allow for 0 range locks in locktestAndrew Tridgell2001-08-241-1/+1
| | | | (This used to be commit c3b2d959a7461cf6f9574716c8a7b915c078b311)
* strchr and strrchr are macros when compiling with optimisation in gcc, so we ↵Andrew Tridgell2001-07-041-2/+2
| | | | | | can't redefine them. damn. (This used to be commit c41fc06376d1a2b83690612304e85010b5e5f3cf)
* The big character set handling changeover!Andrew Tridgell2001-07-041-2/+0
| | | | | | | | This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation. (This used to be commit debb471267960e56005a741817ebd227ecfc512a)
* See if we can stick to slightly valid C..Andrew Bartlett2001-07-031-2/+8
| | | | | | | (With thanks to tpot) Andrew Bartlett (This used to be commit e77cfe1379d92d2be4e2895454e14d11311a913d)
* added a torture target for building all torture progs. Fixed a typo in locktestAndrew Tridgell2001-06-191-1/+1
| | | | (This used to be commit fd0d729ce0d9a057e867001c2ea52c8599713b28)
* moved all our torture code to a separate directoryAndrew Tridgell2001-06-191-0/+567
(This used to be commit dd12c47645e2d0e832bc555492a6a8725a4495ee)