]> sourceware.org Git - newlib-cygwin.git/commitdiff
* bloda.cc (enum bad_app): Add BYTEMOBILE.
authorDave Korn <dave.korn.cygwin@gmail.com>
Sat, 29 Dec 2007 19:26:56 +0000 (19:26 +0000)
committerDave Korn <dave.korn.cygwin@gmail.com>
Sat, 29 Dec 2007 19:26:56 +0000 (19:26 +0000)
(dodgy_app_detects[]):  Add FILENAME entry to detect bmnet.dll.
(big_list_of_dodgy_apps[]):  Add description for BYTEMOBILE.

winsup/utils/ChangeLog
winsup/utils/bloda.cc

index 8deaeac2160badb46a74cd74f7fbf946bc0bcabb..89e6e0faef56cdbd1c32ba8017c748b4bf455389 100644 (file)
@@ -1,3 +1,9 @@
+2007-12-29  Dave Korn  <dave.korn@artimi.com>
+
+       * bloda.cc (enum bad_app):  Add BYTEMOBILE.
+       (dodgy_app_detects[]):  Add FILENAME entry to detect bmnet.dll.
+       (big_list_of_dodgy_apps[]):  Add description for BYTEMOBILE.
+
 2007-12-20  Brian Dessent  <brian@dessent.net>
 
        * Makefile.in (cygcheck.exe): Don't link to ntdll.
index ddb3022226b33726d7793f1cd59346559d5976c7..5c977cec1350c5f21d7b6a605382fc9892d6f68e 100644 (file)
     LanDesk
     Windows Defender 
     Embassy Trust Suite fingerprint reader software containing wxvault.dll
+    ByteMobile laptop optimization client\r
+\r
+  A live version is now being maintained in the Cygwin FAQ, at\r
+    http://cygwin.com/faq/faq.using.html#faq.using.bloda\r
+
 */
 
 enum bad_app
 {
   SONIC,    NORTON,  MACAFFEE,    SYMANTEC,
   LOGITECH, KERIO,   AGNITUM,     ZONEALARM,
-  IOLO,     LANDESK, WINDEFENDER, EMBASSYTS
+  IOLO,     LANDESK, WINDEFENDER, EMBASSYTS,
+  BYTEMOBILE
 };
 
 struct bad_app_info
@@ -78,6 +84,7 @@ static const struct bad_app_det dodgy_app_detects[] =
   { HKLMKEY,     "SYSTEM\\CurrentControlSet\\Services\\lvprcsrv",                LOGITECH   },
   { PROCESSNAME, "LVPrcSrv.exe",                                                 LOGITECH   },
   { FILENAME,    "%programfiles%\\common files\\logitech\\lvmvfm\\LVPrcSrv.exe", LOGITECH   },
+  { FILENAME,    "%windir%\\System32\\bmnet.dll",                                BYTEMOBILE },
 }; 
 
 static const size_t num_of_detects = sizeof (dodgy_app_detects) / sizeof (dodgy_app_detects[0]);
@@ -96,6 +103,7 @@ static struct bad_app_info big_list_of_dodgy_apps[] =
   { LANDESK,     "Landesk"                                                                },
   { WINDEFENDER, "Windows Defender"                                                       },
   { EMBASSYTS,   "Embassy Trust Suite fingerprint reader software containing wxvault.dll" },
+  { BYTEMOBILE,  "ByteMobile laptop optimization client"                                  },
 };
 
 static const size_t num_of_dodgy_apps = sizeof (big_list_of_dodgy_apps) / sizeof (big_list_of_dodgy_apps[0]);
This page took 0.034357 seconds and 5 git commands to generate.