1Index: icconfig.cc
2===================================================================
3RCS file: /usr/local/cvsroot/uz/c/estic/icconfig.cc,v
4retrieving revision 1.11
5retrieving revision 1.12
6diff -r1.11 -r1.12
7609,611d608
8<     // Remember the reroute condition
9<     unsigned RCond = GetRerouteCondition ();
10<
11646c643
12<             if (FirmwareVersion > 1.95) {
13---
14>             if (FirmwareVersion > 1.97) {
15709c706
16<             if (FirmwareVersion > 1.95) {
17---
18>             if (FirmwareVersion > 1.97) {
19711,712c708,709
20<                 RerouteIfBusy       = (*Buf++ != 0);
21<                 RerouteDelayed      = (*Buf++ != 0);
22---
23>                 RerouteIfBusy       = *Buf++;
24>                 RerouteDelayed      = *Buf++;
25Index: icconfig.h
26===================================================================
27RCS file: /usr/local/cvsroot/uz/c/estic/icconfig.h,v
28retrieving revision 1.9
29retrieving revision 1.10
30diff -r1.9 -r1.10
31110a111,113
32> // Short number count (default)
33> const unsigned ShortNumberCount         = 60;
34>
35Index: iclog.cc
36===================================================================
37RCS file: /usr/local/cvsroot/uz/c/estic/iclog.cc,v
38retrieving revision 1.6
39retrieving revision 1.8
40diff -r1.6 -r1.8
4147c47
42<     static void LogOutgoing (const String& Filename, const String& Msg,
43---
44>     static void LogOutgoing (const String& Filename, String Msg,
4551,52c51
46<     static void LogIncoming (const String& Filename, const String& Msg,
47<                              const Time& T);
48---
49>     static void LogIncoming (const String& Filename, String Msg, const Time& T);
50106c105
51< void CallLogger::LogOutgoing (const String& Filename, const String& Msg,
52---
53> void CallLogger::LogOutgoing (const String& Filename, String Msg,
54124a124,126
55>     // Convert the string to the local conventions
56>     Msg.OutputCvt ();
57>
58135c137
59< void CallLogger::LogIncoming (const String& Filename, const String& Msg,
60---
61> void CallLogger::LogIncoming (const String& Filename, String Msg,
62152a155,157
63>
64>     // Convert the string to the local conventions
65>     Msg.OutputCvt ();
66Index: icshort.cc
67===================================================================
68RCS file: /usr/local/cvsroot/uz/c/estic/icshort.cc,v
69retrieving revision 1.6
70retrieving revision 1.7
71diff -r1.6 -r1.7
72457a458,461
73>     // Insert the default count of short numbers
74>     for (unsigned Memory = 1; Memory <= ShortNumberCount; Memory++) {
75>         Insert (new ShortNumberInfo (Memory));
76>     }
77Index: make/solaris-x.mak
78===================================================================
79RCS file: /usr/local/cvsroot/uz/c/estic/make/solaris-x.mak,v
80retrieving revision 1.4
81retrieving revision 1.5
82diff -r1.4 -r1.5
835c5
84< # * (C) 1995-96  Ullrich von Bassewitz					      *
85---
86> # * (C) 1995-97  Ullrich von Bassewitz					      *
8764a65
88> 		icac.o		\
8983d83
90< 		icprefix.o	\
9187a88,89
92> ACOBJ =		../areacode/areacode.o
93>
9494,95c96
95< 	$(CC) -o xestic $(OBJS) $(LIB) -lg++ -L/usr/openwin/lib -lX11 #-lm -lsocket -lnsl -lgen
96<
97---
98>  	$(CC) -o xestic $(OBJS) $(ACOBJ) $(LIB) -lg++ -L/usr/openwin/lib -lX11 #-lm -lsocket -lnsl -lgen
99