From d2051616488f47ccefc334817114ac563fed0ba4 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Wed, 27 Dec 2006 12:29:34 +0000 Subject: [PATCH] Fix linking mode changes in previous fix --- goldlib/gall/geall.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/goldlib/gall/geall.h b/goldlib/gall/geall.h index ef15fcb..a6754b4 100644 --- a/goldlib/gall/geall.h +++ b/goldlib/gall/geall.h @@ -239,8 +239,9 @@ const int DISPMSGSIZE_LINES = 3; // ------------------------------------------------------------------ // Replylink types -const int REPLYLINK_CHAIN = 0; -const int REPLYLINK_DIRECT = 1; +const int REPLYLINK_DIRECT = 0; +const int REPLYLINK_CHAIN = 1; +const int REPLYLINK_NONE = 2; const int REPLYLINKLIST_FAST = 0; const int REPLYLINKLIST_FULL = 1;