LINTFLAGS+="-Dsigset_t=long"
# FreeBSD8
LINTFLAGS+="-D__uint16_t=uint16_t"
-LINTFLAGS+=-D__signed__=signed
+LINTFLAGS+=-D__signed__=signed "-D__packed=" "-D__aligned(x)="
OBJ=drill.o drill_util.o error.o root.o work.o chasetrace.o dnssec.o securetrace.o
SRC=$(OBJ:.o=.c)
LINTFLAGS+="-Dsigset_t=long"
# FreeBSD8
LINTFLAGS+="-D__uint16_t=uint16_t"
-LINTFLAGS+=-D__signed__=signed
+LINTFLAGS+=-D__signed__=signed "-D__packed=" "-D__aligned(x)="
HEADER = config.h
MAIN_SOURCES = ldns-read-zone.c \
}
break;
case TYPE_TIMESTAMP:
+#ifndef S_SPLINT_S
time.tv_sec = (long int) atol(mc->value);
+#endif
time_tt = (time_t)time.tv_sec;
tmp = ctime(&time_tt);
tmp2 = malloc(strlen(tmp) + 1);
/* wait for ACK packet */
FD_ZERO(&rfds);
FD_SET(s, &rfds);
+#ifndef S_SPLINT_S
tv.tv_sec = timeout_retry; /* seconds */
+#endif
tv.tv_usec = 0; /* microseconds */
retval = select(s + 1, &rfds, NULL, NULL, &tv);
if (retval == -1) {