From a0cf93b0baa2156069fbed5fac7f6242f0c61e2d Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Mon, 10 Nov 2014 14:29:25 +0100 Subject: [PATCH] Fix -addMasterOption option The comparison of the date stamps in master and user settings file was broken, because the date stamps were declared as unsigned, so that the difference would never be negative. --- args.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/args.h b/args.h index 270866d..1ceb1a4 100644 --- a/args.h +++ b/args.h @@ -102,8 +102,8 @@ typedef struct { IcsTextMenuEntry icsTextMenuEntry[ICS_TEXT_MENU_SIZE]; int junk; -unsigned int saveDate; -unsigned int dateStamp; +int saveDate; +int dateStamp; Boolean singleList; Boolean autoClose; char *homeDir; -- 1.7.0.4