Index: icconfig.cc =================================================================== RCS file: /usr/local/cvsroot/uz/c/estic/icconfig.cc,v retrieving revision 1.11 retrieving revision 1.12 diff -r1.11 -r1.12 609,611d608 < // Remember the reroute condition < unsigned RCond = GetRerouteCondition (); < 646c643 < if (FirmwareVersion > 1.95) { --- > if (FirmwareVersion > 1.97) { 709c706 < if (FirmwareVersion > 1.95) { --- > if (FirmwareVersion > 1.97) { 711,712c708,709 < RerouteIfBusy = (*Buf++ != 0); < RerouteDelayed = (*Buf++ != 0); --- > RerouteIfBusy = *Buf++; > RerouteDelayed = *Buf++; Index: icconfig.h =================================================================== RCS file: /usr/local/cvsroot/uz/c/estic/icconfig.h,v retrieving revision 1.9 retrieving revision 1.10 diff -r1.9 -r1.10 110a111,113 > // Short number count (default) > const unsigned ShortNumberCount = 60; > Index: iclog.cc =================================================================== RCS file: /usr/local/cvsroot/uz/c/estic/iclog.cc,v retrieving revision 1.6 retrieving revision 1.8 diff -r1.6 -r1.8 47c47 < static void LogOutgoing (const String& Filename, const String& Msg, --- > static void LogOutgoing (const String& Filename, String Msg, 51,52c51 < static void LogIncoming (const String& Filename, const String& Msg, < const Time& T); --- > static void LogIncoming (const String& Filename, String Msg, const Time& T); 106c105 < void CallLogger::LogOutgoing (const String& Filename, const String& Msg, --- > void CallLogger::LogOutgoing (const String& Filename, String Msg, 124a124,126 > // Convert the string to the local conventions > Msg.OutputCvt (); > 135c137 < void CallLogger::LogIncoming (const String& Filename, const String& Msg, --- > void CallLogger::LogIncoming (const String& Filename, String Msg, 152a155,157 > > // Convert the string to the local conventions > Msg.OutputCvt (); Index: icshort.cc =================================================================== RCS file: /usr/local/cvsroot/uz/c/estic/icshort.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -r1.6 -r1.7 457a458,461 > // Insert the default count of short numbers > for (unsigned Memory = 1; Memory <= ShortNumberCount; Memory++) { > Insert (new ShortNumberInfo (Memory)); > } Index: make/solaris-x.mak =================================================================== RCS file: /usr/local/cvsroot/uz/c/estic/make/solaris-x.mak,v retrieving revision 1.4 retrieving revision 1.5 diff -r1.4 -r1.5 5c5 < # * (C) 1995-96 Ullrich von Bassewitz * --- > # * (C) 1995-97 Ullrich von Bassewitz * 64a65 > icac.o \ 83d83 < icprefix.o \ 87a88,89 > ACOBJ = ../areacode/areacode.o > 94,95c96 < $(CC) -o xestic $(OBJS) $(LIB) -lg++ -L/usr/openwin/lib -lX11 #-lm -lsocket -lnsl -lgen < --- > $(CC) -o xestic $(OBJS) $(ACOBJ) $(LIB) -lg++ -L/usr/openwin/lib -lX11 #-lm -lsocket -lnsl -lgen