From 9b9072c77d415000b110627c0f5aaa7f9d642d19 Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Sat, 13 Jul 2013 16:46:51 +0200 Subject: sparse: netsniff-ng, trafgen: fix remaining time(0) warnings Those are the last occurences of warnings like: netsniff-ng.c:697:48: warning: Using plain integer as NULL pointer netsniff-ng.c:726:48: warning: Using plain integer as NULL pointer ... Signed-off-by: Daniel Borkmann --- netsniff-ng.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'netsniff-ng.c') diff --git a/netsniff-ng.c b/netsniff-ng.c index 644a351..7b08ed0 100644 --- a/netsniff-ng.c +++ b/netsniff-ng.c @@ -694,7 +694,7 @@ static int next_multi_pcap_file(struct ctx *ctx, int fd) close(fd); slprintf(fname, sizeof(fname), "%s/%s%lu.pcap", ctx->device_out, - ctx->prefix ? : "dump-", time(0)); + ctx->prefix ? : "dump-", time(NULL)); fd = open_or_die_m(fname, O_RDWR | O_CREAT | O_TRUNC | O_LARGEFILE, DEFFILEMODE); @@ -723,7 +723,7 @@ static int begin_multi_pcap_file(struct ctx *ctx) ctx->device_out[strlen(ctx->device_out) - 1] = 0; slprintf(fname, sizeof(fname), "%s/%s%lu.pcap", ctx->device_out, - ctx->prefix ? : "dump-", time(0)); + ctx->prefix ? : "dump-", time(NULL)); fd = open_or_die_m(fname, O_RDWR | O_CREAT | O_TRUNC | O_LARGEFILE, DEFFILEMODE); -- cgit v1.2.3-54-g00ecf