blob: 540ec0bb5c012798570d545f358a0c4adcf5d428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/src/BFiles.cpp 2009-11-13 06:42:20.000000000 +0300
+++ b/src/BFiles.cpp 2009-12-09 21:08:16.000000000 +0300
@@ -294,6 +294,8 @@
while ((ByteCount <= FileSize)&&(Type == kUnknown)) {
if (LocateKeyWord("GAMESS VERSION", 14, -1))
Type = kGAMESSlogType;
+ else if (LocateKeyWord("Firefly (PC GAMESS) version", 27, -1))
+ Type = kGAMESSlogType;
else if (LocateKeyWord("===== IRC DATA PACKET", 21, -1))
Type = kGAMESSTRJType;
else if (LocateKeyWord("===== DRC DATA PACKET", 21, -1))
|