From f90ee0ca3da3857d1eb024b553b26af930076237 Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Sat, 14 Oct 2017 06:42:04 +1100 Subject: [PATCH] Fix function documentation to correctly mirror code Currently the function documentation states that two strings are allocated, this is outdated. Only one char ** parameter is passed into the function now, clearly only a pointer to a single string is returned and needs to be free'd. Reviewed-by: Brian Behlendorf Signed-off-by: Tobin C. Harding Closes #6754 --- lib/libzfs/libzfs_import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libzfs/libzfs_import.c b/lib/libzfs/libzfs_import.c index f371d925b..8b5222475 100644 --- a/lib/libzfs/libzfs_import.c +++ b/lib/libzfs/libzfs_import.c @@ -2297,7 +2297,7 @@ find_aux(zpool_handle_t *zhp, void *data) /* * Determines if the pool is in use. If so, it returns true and the state of - * the pool as well as the name of the pool. Both strings are allocated and + * the pool as well as the name of the pool. Name string is allocated and * must be freed by the caller. */ int -- 2.40.0