Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Korn <dave.korn.cygwin@gmail.com>2007-12-29 22:26:56 +0300
committerDave Korn <dave.korn.cygwin@gmail.com>2007-12-29 22:26:56 +0300
commit9c4d008ca5b1922c98500869c0510c83eae6127b (patch)
treece823f3b0da4175e2f4eeb512c01a630becc888f
parente1e00b3373e19f0a429055e50de595e98668db5f (diff)
* 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.
-rw-r--r--winsup/utils/ChangeLog6
-rw-r--r--winsup/utils/bloda.cc10
2 files changed, 15 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 8deaeac21..89e6e0fae 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -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.
diff --git a/winsup/utils/bloda.cc b/winsup/utils/bloda.cc
index ddb302222..5c977cec1 100644
--- a/winsup/utils/bloda.cc
+++ b/winsup/utils/bloda.cc
@@ -41,13 +41,19 @@
LanDesk
Windows Defender
Embassy Trust Suite fingerprint reader software containing wxvault.dll
+ ByteMobile laptop optimization client
+
+ A live version is now being maintained in the Cygwin FAQ, at
+ http://cygwin.com/faq/faq.using.html#faq.using.bloda
+
*/
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]);