mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
Fix possible strict aliasing issue (if time_t is the same size as int but not int but for example long) which also resulted in a false positive warning on systems with 64-bit time_t. Pointer casts are bad; we can just copy the time_t. Elsewhere, avoid casting char * to int * by using memcpy(). Reviewed by: eadler Differential Revision: https://reviews.freebsd.org/D16075
7 lines
63 B
Makefile
7 lines
63 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= rup
|
|
|
|
LIBADD= rpcsvc
|
|
|
|
.include <bsd.prog.mk>
|