From b197457cd6e7deec0a24dcd435de5c4184399348 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Wed, 22 Jul 2020 13:14:20 -0500 Subject: libzfs: const'ify path argument to zfs_path_to_zhandle zfs_path_to_zhandle has no need to mutate the path argument, most notably: - zfs_open takes path as const - getextmntent takes path as const - fprintf most clearly doesn't need to mutate it It's hard to foresee any reason that libzfs could conceivably want to mutate it in the future, either, so const'ify it. Reviewed-by: Ryan Moeller Reviewed-by: Matt Ahrens Reviewed-by: Brian Behlendorf Signed-off-by: Kyle Evans Closes #10605 --- lib/libzfs/libzfs_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libzfs/libzfs_util.c') diff --git a/lib/libzfs/libzfs_util.c b/lib/libzfs/libzfs_util.c index 1fd9d400d..65e126844 100644 --- a/lib/libzfs/libzfs_util.c +++ b/lib/libzfs/libzfs_util.c @@ -1104,7 +1104,7 @@ zfs_get_pool_handle(const zfs_handle_t *zhp) * fs/vol/snap/bkmark name. */ zfs_handle_t * -zfs_path_to_zhandle(libzfs_handle_t *hdl, char *path, zfs_type_t argtype) +zfs_path_to_zhandle(libzfs_handle_t *hdl, const char *path, zfs_type_t argtype) { struct stat64 statbuf; struct extmnttab entry; -- cgit v1.2.3