From dda54d2e6032ea4dd907160f7431ab6e4f056d07 Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Thu, 3 Apr 2025 11:00:31 +0200 Subject: [PATCH] libnfs: the libnfs.url option required only by libnfs, thus optional Signed-off-by: Tigran Mkrtchyan --- src/aiori-LIBNFS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aiori-LIBNFS.c b/src/aiori-LIBNFS.c index 5e3fe6c5..849b7a19 100644 --- a/src/aiori-LIBNFS.c +++ b/src/aiori-LIBNFS.c @@ -238,7 +238,7 @@ option_help *LIBNFS_GetOptions(aiori_mod_opt_t ** init_backend_options, aiori_mo *init_backend_options = (aiori_mod_opt_t *) libnfs_options; option_help h [] = { - {0, "libnfs.url", "The URL (RFC2224) specifing the server, path and options", OPTION_REQUIRED_ARGUMENT, 's', &libnfs_options->url}, + {0, "libnfs.url", "The URL (RFC2224) specifing the server, path and options", OPTION_OPTIONAL_ARGUMENT, 's', &libnfs_options->url}, LAST_OPTION };