From: Thibault Godouet Date: Sun, 3 Sep 2000 14:31:32 +0000 (+0000) Subject: bug corrected : set_lavgor used to act on bit 1 (the one of lavg) X-Git-Tag: ver2_9_4~610 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3d2a240c5dc793a373ae222e58d6d6709f0b681;p=thirdparty%2Ffcron.git bug corrected : set_lavgor used to act on bit 1 (the one of lavg) --- diff --git a/option.h b/option.h index 403d9f0..250fd55 100644 --- a/option.h +++ b/option.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: option.h,v 1.8 2000-08-28 18:00:34 thib Exp $ */ + /* $Id: option.h,v 1.9 2000-09-03 14:31:32 thib Exp $ */ /* read and set options of a line */ @@ -98,7 +98,7 @@ #define is_land(opt) \ ( ! _bit_test(opt, 2)) #define set_lor(opt) \ - (_bit_set(opt, 1)) + (_bit_set(opt, 2)) #define set_land(opt) \ (_bit_clear(opt, 2))