From cd72af9c681779cc88af389bd227a655e776476c Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Tue, 23 Jul 2013 12:37:14 -0700 Subject: [PATCH] Fix 'zpool list -H' error code Due to an uninitialized variable it was possible for the command 'zpool list -H' to return a non-zero error when there are no pools. Signed-off-by: Brian Behlendorf Closes #1605 --- cmd/zpool/zpool_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index 9d4d128..b96fbe4 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -3059,7 +3059,7 @@ int zpool_do_list(int argc, char **argv) { int c; - int ret; + int ret = 0; list_cbdata_t cb = { 0 }; static char default_props[] = "name,size,allocated,free,capacity,dedupratio," -- 1.8.3.1