summaryrefslogtreecommitdiff
path: root/loadparm.c
diff options
context:
space:
mode:
authorDavid Dykstra <dwd@samba.org>1999-02-09 18:35:29 +0000
committerDavid Dykstra <dwd@samba.org>1999-02-09 18:35:29 +0000
commitd41c7d025c1725b921ef51c70a705a51b5c36332 (patch)
tree462ee4add162940a2f8dd2e7b385ccd06d55db4d /loadparm.c
parentb86f0cefa23fff464bb68f53b76523cf8ce26436 (diff)
downloadrsync-d41c7d025c1725b921ef51c70a705a51b5c36332.tar.gz
Use MAXHOSTNAMELEN (256) for the array holding the host_name in socket.c
instead of 200. Move the defines of True and False to rsync.h. Eliminate the defines of BOOL in loadparm.c and params.c because it is already defined in rsync.h. Changes suggested by Roman Gollent roman.gollent@wdr.com
Diffstat (limited to 'loadparm.c')
-rw-r--r--loadparm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/loadparm.c b/loadparm.c
index 9b28c3b2..b87d24a6 100644
--- a/loadparm.c
+++ b/loadparm.c
@@ -44,9 +44,6 @@
*/
#include "rsync.h"
-#define BOOL int
-#define False 0
-#define True 1
#define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
#define strequal(a,b) (strcasecmp(a,b)==0)
#define BOOLSTR(b) ((b) ? "Yes" : "No")