opnsense-src/usr.bin/which
Collin Funk 342a51f110 which: Use size_t instead of ssize_t for pathlen
The "pathlen" variable is the return value of strlen(3) and is then
passed as an argument to malloc(3) and memcpy(3). The size_t type
matches the prototype for these functions. The size_t type is unsigned
so it can fit larger $PATH values than ssize_t. However, in practice
ssize_t should be larger enough so this change is just for clarity.

Signed-off-by: Collin Funk <collin.funk1@gmail.com>

MFC after:	1 week
Pull Request:	https://github.com/freebsd/freebsd-src/pull/1113

(cherry picked from commit 8268a31bcceb9ebe32d380cab792c89c5d897d15)
2024-04-15 10:05:13 -04:00
..
Makefile Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
Makefile.depend Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
which.1 Remove $FreeBSD$: two-line nroff pattern 2023-08-16 11:55:10 -06:00
which.c which: Use size_t instead of ssize_t for pathlen 2024-04-15 10:05:13 -04:00