From: Wayne Davison Date: Mon, 21 Sep 2020 20:17:15 +0000 (-0700) Subject: Put CAN_HARDLINK_SYMLINK info into --version output. X-Git-Tag: v3.2.4pre1~130 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b990d97d35c39a1bf508b9819c47b0876686f333;p=thirdparty%2Frsync.git Put CAN_HARDLINK_SYMLINK info into --version output. --- 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