Changelog: relay32/relay386.c: check_relay_include Treat whole dlls as advertised -- Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- Index: wine/relay32/relay386.c =================================================================== RCS file: /home/wine/wine/relay32/relay386.c,v retrieving revision 1.48 diff -u -r1.48 relay386.c --- wine/relay32/relay386.c 13 Sep 2002 17:47:44 -0000 1.48 +++ wine/relay32/relay386.c 13 Oct 2002 14:54:53 -0000 @@ -190,8 +190,9 @@ if (strncasecmp( *listitem, module, len-1 ) || module[len]) continue; if (!strcmp( p + 1, func ) || !strcmp( p + 1, "*" )) return !show; } - else /* function only */ + else /* dllname or function only */ { + if (!strcmp( *listitem, module )) return !show; if (!strcmp( *listitem, func )) return !show; } }