From 24d95c034fb8bf64d700697fc9a9109707dc7163 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 1 Oct 1996 12:04:47 +0000 Subject: [PATCH] move check for remsh after config.h --- rsync.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rsync.h b/rsync.h index 34792fc9..cda1621f 100644 --- a/rsync.h +++ b/rsync.h @@ -20,12 +20,6 @@ #define BLOCK_SIZE 700 #define RSYNC_RSH_ENV "RSYNC_RSH" -#if HAVE_REMSH -#define RSYNC_RSH "remsh" -#else -#define RSYNC_RSH "rsh" -#endif - #define RSYNC_NAME "rsync" #define BACKUP_SUFFIX "~" @@ -61,6 +55,12 @@ #include "config.h" +#if HAVE_REMSH +#define RSYNC_RSH "remsh" +#else +#define RSYNC_RSH "rsh" +#endif + #include #ifdef HAVE_UNISTD_H #include -- 2.34.1