aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/sockets/reconnect
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* Do a sweep and remove most WARNS=6 settingsKyle Evans2020-10-011-1/+0
| | | | | | | | | | | | | | | Repeating the default WARNS here makes it slightly more difficult to experiment with default WARNS changes, e.g. if we did something absolutely bananas and introduced a WARNS=7 and wanted to try lifting the default to that. Drop most of them; there is one in the blake2 kernel module, but I suspect it should be dropped -- the default WARNS in the rest of the build doesn't currently apply to kernel modules, and I haven't put too much thought into whether it makes sense to make it so. Notes: svn path=/head/; revision=366304
* Fix warnings with gcc 5.0Enji Cooper2016-01-161-1/+2
| | | | | | | | | | | | | | | | | reconnect.c: - Convert the K&R prototype of main to an ANSI prototype to mute a warning from gcc 4.2.1 - Close s_sock2 after finishing off the last test to plug a leak and mute a warning from gcc 5.0 about a -Wunused-but-set variable sendfile.c: - Fix a -Wunused-but-set warning with gcc 5.0 with pagesize in main(..) MFC after: 5 days Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=294126
* Fix even more warnings..Enji Cooper2015-04-112-3/+4
| | | | | | | | MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=281411
* Fix more warnings I didn't catch in the first go-aroundEnji Cooper2015-04-112-6/+3
| | | | | | | | MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=281410
* - Use static buffers for temporary file paths instead of strdup of constant ↵Enji Cooper2015-04-111-14/+8
| | | | | | | | | | | | | strings - Don't use /tmp because it's outside ATF's prescribed sandbox - Use mkstemp instead of mktemp to eliminate warning MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=281391
* NO_MAN= has been deprecated in favor of MAN= for some time, go aheadWarner Losh2014-04-131-1/+1
| | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. Notes: svn path=/head/; revision=264400
* Style: NO_MAN doesn't need any value.Ruslan Ermilov2006-03-151-1/+1
| | | | Notes: svn path=/head/; revision=156735
* Use WARNS?= instead of WARNS= in Makefiles so that global warningRobert Watson2005-01-221-1/+1
| | | | | | | | | settings can override local ones. Pointed out by: ru Notes: svn path=/head/; revision=140643
* Add test which excersises problem with unability to change association ofMaxim Sobolev2005-01-122-0/+149
already associated datagram unix domain socket by issuing connect() system call. Notes: svn path=/head/; revision=140109