From 616fa7c02b0cc373f011998f56ed53bb37742d13 Mon Sep 17 00:00:00 2001 From: Tim Chase Date: Tue, 29 Nov 2016 15:47:05 -0600 Subject: zstreamdump needs to initialize fletcher 4 support Otherwise, the checksum function pointer isn't initialized. Reviewed-by: Brian Behlendorf Signed-off-by: Tim Chase Closes #5411 --- cmd/zstreamdump/zstreamdump.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd') diff --git a/cmd/zstreamdump/zstreamdump.c b/cmd/zstreamdump/zstreamdump.c index e0bc34542..aa594b8b3 100644 --- a/cmd/zstreamdump/zstreamdump.c +++ b/cmd/zstreamdump/zstreamdump.c @@ -265,6 +265,7 @@ main(int argc, char *argv[]) exit(1); } + fletcher_4_init(); send_stream = stdin; while (read_hdr(drr, &zc)) { @@ -618,6 +619,7 @@ main(int argc, char *argv[]) pcksum = zc; } free(buf); + fletcher_4_fini(); /* Print final summary */ -- cgit v1.2.3