move check for remsh after config.h
authorAndrew Tridgell <tridge@samba.org>
Tue, 1 Oct 1996 12:04:47 +0000 (12:04 +0000)
committerAndrew Tridgell <tridge@samba.org>
Tue, 1 Oct 1996 12:04:47 +0000 (12:04 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 34792fc..cda1621 100644 (file)
--- a/rsync.h
+++ b/rsync.h
 #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 "~"
 
 
 #include "config.h"
 
+#if HAVE_REMSH
+#define RSYNC_RSH "remsh"
+#else
+#define RSYNC_RSH "rsh"
+#endif
+
 #include <sys/types.h>
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>