From b990d97d35c39a1bf508b9819c47b0876686f333 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 21 Sep 2020 13:17:15 -0700 Subject: [PATCH] Put CAN_HARDLINK_SYMLINK info into --version output. --- usage.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/usage.c b/usage.c index f427263e..db13535f 100644 --- a/usage.c +++ b/usage.c @@ -53,6 +53,16 @@ static void print_info_flags(enum logcode f) #endif "socketpairs", +#ifndef SUPPORT_LINKS + "no " +#endif + "symlinks", + +#ifndef CAN_SET_SYMLINK_TIMES + "no " +#endif + "symtimes", + #ifndef SUPPORT_HARD_LINKS "no " #endif @@ -63,10 +73,10 @@ static void print_info_flags(enum logcode f) #endif "hardlink-specials", -#ifndef SUPPORT_LINKS +#ifndef CAN_HARDLINK_SYMLINK "no " #endif - "symlinks", + "hardlink-symlinks", #ifndef INET6 "no " @@ -112,11 +122,6 @@ static void print_info_flags(enum logcode f) #endif "iconv", -#ifndef CAN_SET_SYMLINK_TIMES - "no " -#endif - "symtimes", - #ifndef SUPPORT_PREALLOCATION "no " #endif -- 2.47.2