#
b2653141 |
| 03-Sep-2021 |
rillig <rillig@NetBSD.org> |
inetd: remove redundant tests before calling isspace
|
#
200ab5f4 |
| 03-Sep-2021 |
rillig <rillig@NetBSD.org> |
inetd: prepare for lint's strict bool mode
Lint's strict bool mode considers bool incompatible with the other scalar types. This makes the type of expressions more visible in the code. In particul
inetd: prepare for lint's strict bool mode
Lint's strict bool mode considers bool incompatible with the other scalar types. This makes the type of expressions more visible in the code. In particular, conditions of the form '!strcmp(...)' are no longer allowed, they have to be written as 'strcmp(...) == 0'.
The operator '!' cannot be used with sep->se_wait since that has type pid_t, not bool.
No change to the resulting binary.
show more ...
|
#
2172e2da |
| 30-Aug-2021 |
rillig <rillig@NetBSD.org> |
inetd: remove trailing whitespace
|
#
93b6e10e |
| 03-Feb-2019 |
mrg <mrg@NetBSD.org> |
- don't compare pointer with \0. in this case, *pointer is wanted, not \0 -> NULL, as we just tested pointer, and this is wanting to be the standard "is this string NULL or nul?" idiom.
|
#
c328a8ec |
| 04-Jan-2012 |
drochner <drochner@NetBSD.org> |
include <netipsec/ipsec.h> rather than <netinet6/ipsec.h> from userland where possible, for consistency and compatibility to FreeBSD (exception: KAME specific statistics gathering in netstat(1) and s
include <netipsec/ipsec.h> rather than <netinet6/ipsec.h> from userland where possible, for consistency and compatibility to FreeBSD (exception: KAME specific statistics gathering in netstat(1) and systat(1))
show more ...
|
#
8b39f71d |
| 08-Jan-2009 |
christos <christos@NetBSD.org> |
- when we close an se_fd, set it to -1 - fix int/ssize_t/size_t/socklen_t issues - fix casts - remove unused variables - fix prototypes - fix const - remove unneeded casts
|
#
cfe7f80f |
| 29-Oct-2004 |
dsl <dsl@NetBSD.org> |
Add (unsigned char) cast to ctype functions
|
#
4b061adf |
| 31-Jan-2000 |
itojun <itojun@NetBSD.org> |
sync with latest libipsec. since outgoing and incoming policy is separated, inetd can take multiple policy specification, separated by ";".
|