http://bugs.winehq.org/show_bug.cgi?id=2508
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2004-11-10 03:20 -------
Yup,
[andi@note include]$ grep -i c00000ba *.h
ntstatus.h:#define STATUS_FILE_IS_A_DIRECTORY 0xC00000BA
this also shows that it complains about creating a directory, which is invalid.
So this call
000b:Call kernel32.CreateFileW(10415fc0
L"Z:\\home\\vengeance\\Server\\Program\\Bin\\",40000000,00000007,00000000,00000003,02000000,00000000)
ret=1015b46d
is very obviously wrong, i.e. it is missing the filename part (which is even
more obvious since it actually contains a trailing \\, too!).
Check for string operations (or other function calls!) on the 10415fc0 string
before that call, something there is incorrect!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=824
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-10-10 23:44 -------
Patches tend to bit rot here. If you want them reviewed it is probably better
to submit them to wine-devel. Also patches are supposed to be in diff -u
format. For more information please refer to the following link.
http://www.winehq.org/site/docs/wine-devel/patches
Please include a link to this bug report in your post.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2508
------- Additional Comments From shiva(a)sewingwitch.com 2004-10-10 16:34 -------
I traced the call in wineserver, here's the output:
0009: create_file( access=40000000, inherit=0, sharing=00000007, create=1,
options=00004010, attrs=00000000,
filename="/home/vengeance/.wine/dosdevices/z:/home/vengeance/Server/Program/Bin/" )
0009: create_file() = FILE_IS_A_DIRECTORY { handle=(nil) }
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2508
Summary: CreateFile(directory_name,GENERIC_WRITE,...) returns
STATUS_FILE_IS_A_DIRECTORY
Product: Wine
Version: 20040914
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shiva(a)sewingwitch.com
While testing the beta Tribes: Vengeance dedicated server, I found that it tests
for a writable directory with this sequence:
000b:Call kernel32.CreateFileW(10415fc0
L"Z:\\home\\vengeance\\Server\\Program\\Bin\\",40000000,00000007,00000000,00000003,02000000,00000000)
ret=1015b46d
000b:Call ntdll.RtlIsDosDeviceName_U(10415fc0
L"Z:\\home\\vengeance\\Server\\Program\\Bin\\") ret=554b4506
000b:Ret ntdll.RtlIsDosDeviceName_U() retval=00000000 ret=554b4506
000b:Call ntdll.RtlDosPathNameToNtPathName_U(10415fc0
L"Z:\\home\\vengeance\\Server\\Program\\Bin\\",559bebb0,00000000,00000000)
ret=554b42c7
000b:Ret ntdll.RtlDosPathNameToNtPathName_U() retval=00000001 ret=554b42c7
000b:Call
ntdll.NtCreateFile(559beba4,40000000,559bebb8,559beba8,00000000,00000000,00000007,00000001,00004010,00000000,00000000)
ret=554b438f
000b:Ret ntdll.NtCreateFile() retval=c00000ba ret=554b438f
000b:Call ntdll.RtlNtStatusToDosError(c00000ba) ret=554b43bd
000b:Ret ntdll.RtlNtStatusToDosError() retval=00000005 ret=554b43bd
000b:Call ntdll.RtlFreeUnicodeString(559bebb0) ret=554b43cc
000b:Ret ntdll.RtlFreeUnicodeString() retval=00000001 ret=554b43cc
000b:Ret kernel32.CreateFileW() retval=ffffffff ret=1015b46d
As you can see, this fails in NtCreateFile() (create_file() in server/file.c).
Running the program in Win2k with strace, I see this and think it's the
comparable call:
3169 2264 1668 NtCreateFile (0x40100080, {24, 0, 0x40, 0, 2288836,
"\??\K:\Games\tvserver\Server\Program\Bin\"}, 0x0, 0, 7, 1, 16416, 0, 0, ...
124, {status=0x0, info=1}, ) == 0x0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=824
randy.galbraith(a)cox.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #697 is|0 |1
obsolete| |
------- Additional Comments From randy.galbraith(a)cox.net 2004-10-10 15:02 -------
Created an attachment (id=698)
--> (http://bugs.winehq.org/attachment.cgi?id=698&action=view)
Storage of REG_MULTI_SZ changed from str(7) to hex(7)
Whoops! The last patch was wrong, it used "hex:" instead of "hex(7):", thus
losing the data type in the process of storing a REG_MULTI_SZ. This new patch
corrects that issue and is actually simpler. I've also expanded the test
program (see link off members.cox.net above) to read back and compare the
values.
Best regards,
-Randy Galbraith
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=824
------- Additional Comments From randy.galbraith(a)cox.net 2004-10-10 13:14 -------
Created an attachment (id=697)
--> (http://bugs.winehq.org/attachment.cgi?id=697&action=view)
Proposed patch to wine/server/registry.c 1.60
This patch proposes changes to wine/server/registry.c to handle REG_MULTI_SZ as
a type of REG_BINARY instead of the current REG_SZ mapping. This is my first
ever proposed patch to the Wine project, hence it will require careful review
by the Wine experts.
I've tested this change on my system and it appears to work correctly. The
first time I ran my test program I got the following output from Wine:
Line 4944: Malformed value '"Dependent Files"=str(7):""'
Line 88: Malformed value '"Empty Value0"=str(7):""'
Line 89: Malformed value '"Empty Value1"=str(7):""'
Line 90: Malformed value '"Empty Value2"=str(7):"\1"'
Line 91: Malformed value '"Empty Value3"=str(7):"one\0two\0three\0"'
On the second run, there was no output.
Best regards,
-Randy Galbraith
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2507
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=70
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2506
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=70
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1142
------- Additional Comments From wine(a)deesconsulting.com 2004-10-10 10:51 -------
OK, I'm using this bug as scratchspace atm, so this may or may not be correct.
This message (http://winehq.org/hypermail/wine-devel/2003/03/0481.html) is the
beginning of a long thread explaining file locking in wine.
If this message (http://winehq.org/hypermail/wine-devel/2003/03/0577.html) is
correct, then the problem appears to be that mandatory locks in windows apps
are being mapped onto advisory locks in linux. So the solution could be for
wine to check for advisory locks every time before opening a file, and, if a
lock exists, enforce mandatory locking on windows apps and return an error.
I don't know if that's right or if it's possible, but I want to write this
down before I sleep on it ;)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2422
------- Additional Comments From bugzilla(a)jonathan-glaschke.de 2004-10-10 09:44 -------
I use FreeBSD 5.2.1 with Wine-20040914, same Problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1142
------- Additional Comments From wine(a)deesconsulting.com 2004-10-10 07:49 -------
This bug is also present in Crossover Office Pro 3.0.1, based on wine version
20040505, at least in networked environments (NFS, SMB). I have not tested it
locally.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1142
------- Additional Comments From wine(a)deesconsulting.com 2004-10-10 07:34 -------
I suspect this may be a duplicate of bug 1071, and I can confirm it is present
in Codeweavers Crossover Office Professional 3.0.0 with Office XP. 3.0.0 says
it's based on wine version 20040213.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2507
Summary: Fallout: mouse doesn't move at all
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wsapplegate(a)myrealbox.com
Executive summary :
~~~~~~~~~~~~~~~~~~~
Fallout is and old (circa 1997) RPG, published by Interplay. Upon recently
trying to reinstall the game, I came across a problem : the mouse wouldn't
move. Even performing the installation through the keyboard wasn't of much
help, since the game exhibited the same problems (it also grabbed my pointer,
I needed to escape the uncontrollable game window by changing virtual desktop
and moving the pointer out of the way).
Analysis :
~~~~~~~~~~
Quite frankly, I really don't know enough about DirectInput to know why that
problem appeared, but I've at least found what causes it. The problem appears
since WINE 20040615, which has seen an overhaul of several DirectInput-related
files. The problem is located in the file dlls/dinput/device.c and has
apparently been caused by a CVS commit on 2004-06-02[1]. In the function
create_DataFormat(), the following lines are changed :
- (wine_format->rgodf[i].dwType &
asked_format->rgodf[j].dwType)) {
+ (/* Then check if it accepts any instance id, and if not, if
it matches Wine's
+ * instance id.
+ */
+ ((asked_format->rgodf[j].dwType & 0x00FFFF00) ==
DIDFT_ANYINSTANCE) ||
+ (DIDFT_GETINSTANCE(wine_format->rgodf[i].dwType) ==
DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType)))) {
Reverting this change makes the mouse to work again.
[1]
http://cvs.winehq.com/cvsweb/wine/dlls/dinput/device.c.diff?r1=1.16&r2=1.17…
How to reproduce :
~~~~~~~~~~~~~~~~~~
Assuming you have a Fallout CD in drive D:,
* run "wine 'd:\\_setup.exe'" (alternatively, if the game is already
installed, run "wine <path to the game directory>\falloutw.exe")
* notice you cannot move the mouse
Solutions and workarounds :
~~~~~~~~~~~~~~~~~~~~~~~~~~~
I've found no workaround for this problem. Reverting the change in
create_DataFormat() works for me, but is probably incorrect (I haven't been
able to ascertain what effects it could have on other DirectInput-based
software).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2506
wsapplegate(a)myrealbox.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2506
------- Additional Comments From wsapplegate(a)myrealbox.com 2004-10-10 03:54 -------
[cont'd. Sorry, clicked on Commit by mistake]
... an affected version, a possible workaround is to install the game
partially, copy the missing files manually, then edit the file fallout.cfg in
the installation directory, and edit the paths by hand.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2506
Summary: Fallout installer reports incorrect disk space
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wsapplegate(a)myrealbox.com
Executive summary :
~~~~~~~~~~~~~~~~~~~
Fallout is an old (circa 1997) RPG, published by Interplay. The game doesn't
use a standard installer (like InstallShield or similar). Rather, Interplay
did write a custom installer. While recently trying to reinstall this game, I
was confronted to a weird problem : the reported disk space was about 268 MiB
instead of 2147 MiB as previously reported. Both values are in fact incorrect
(the hard disk has much more than 2 GiB), but the latter allows for a complete
installation, while the former only allows a limited installation, the
remainder being read from the CD-ROM.
Analysis :
~~~~~~~~~~
A quick investigation shows that the problem only occurs since WINE 20040505.
Not coincidentally, this version contains changes to the GetDiskFreeSpace*
functions. Tracing the _SETUP.EXE function calls, it indeed appears it makes
calls to GetDiskFreeSpaceA(), which in turn calls GetDiskFreeSpaceW(). This
functions returns values capped at 2 GiB, with the following parameters : 4096
bytes per sector, 1 sector per cluster, 524287 clusters. From the behaviour
exhibited by the installer, it unfortunately appears the programmers used a
16-bit sized variable to store the clusters value, thus generating incorrect
results when this number is above 65535, as reported by the new
GetDiskFreeSpaceW().
How to reproduce :
~~~~~~~~~~~~~~~~~~
You need (1) a HDD with more than 2 GiB free space and (2) a copy of Fallout.
Then, execute the following steps (assuming your CD-ROM is mounted as D:)
* run "wine 'd:\\_setup.exe'"
* notice the free space reported for the hard disk is incorrect
Solutions and workarounds :
~~~~~~~~~~~~~~~~~~~~~~~~~~~
I personally solved the problem by kludging the GetDiskFreeSpaceW() function
in dlls/kernel/volume.c to report a number of cluster below 65535 (for a 2 GiB
disk, it reports 512 bytes * 64 sectors * 65535 clusters), but it's most
probably incorrect (these values are not consistent with the values reported
by NtQueryVolumeInformationFile()). If you run
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=824
------- Additional Comments From randy.galbraith(a)cox.net 2004-10-10 00:05 -------
I would like to see if I could resolve this bug. However, I'm having some
difficulty understanding the exact nature of the original description. In
particular, can the import/export steps below be reproduce on Windows XP or just
Windows 95/98/ME? I.e., does Unicode support get in the way?
Here is an example program I wrote in an attempt to recreate this issue:
http://members.cox.net/~rgalbraith10/wine/bug824/demo824.chttp://members.cox.net/~rgalbraith10/wine/bug824/Makefile
When this program is run on Windows XP (compiled with gcc under cygwin) the
exported registry looks like this:
[HKEY_CURRENT_USER\Software\Wine\Bug824]
"Empty Value0"=hex(7):
"Empty Value1"=hex(7):00,00
"Empty Value2"=hex(7):01,00,00,00
When the program is run under Wine (20040914) the exported registry looks like this:
[HKEY_USERS\randy\Software\Wine\Bug824]
"Empty Value0"=hex(7):00
"Empty Value1"=hex(7):00
"Empty Value2"=hex(7):01,00
So, we can see "Empty Value0" is reporting "00" (which is the issue at hand).
However, what am I to make of Windows XP's "00,00" and "01,00,00,00"? I assume
this is because Unicode support, but is part a worry?
Interestingly user.reg in Wine stores these entries as this:
[Software\\Wine\\Bug824] 1097383218
"Empty Value0"=str(7):""
"Empty Value1"=str(7):""
"Empty Value2"=str(7):"\1"
Would it be correct to assume the basic issue is the choice of "str(7)" as the
data type for REG_MULTI_SZ?
Since this is my first ever post to Wine/Bugzilla, I would appreciate any
helpful netiquette points (i.e. should I post to mailing list/newsgroup first,
are URLs (as above) preferred over attachments).
Kind regards,
-Randy Galbraith
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1511
------- Additional Comments From hallo(a)michael-kaufmann.ch 2004-09-10 15:41 -------
Now I understand... If the buffer is NULL *and* count is zero, GetObject
should return the size of the object.
This is also fixed. I don't know whether Mike McCormack has read this bug
report, but he has fixed it with this patch:
http://www.winehq.org/hypermail/wine-patches/2003/07/0289.html
So we can safely close this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2502
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-08-10 18:35 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2502
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-08-10 17:29 -------
It seems to have been a glitch on my system. It has gone away now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2505
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.rimarts.co.jp
Keywords| |download, NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Never think your not pleasing a girl again with a huge c0x!
http://deregoy.com/9/4/index.php?aiw90&com5&
P63N9lk864676r5s2VYLet's just walk upside down backwards.I ought, therefore, as the elephant was sideways onDropped an advolt on his head!437792957
http://bugs.winehq.org/show_bug.cgi?id=2505
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-06-10 19:06 -------
What program is this? Is it downloadable somewhere?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Get from our website and save hundreds!
http://WWW.DEREGOY.COM/200/index.php?aiw90&com%&
32B1r6Y96giGcDB5j99HAHAHAHA i told you!I just don't know what to do about it.You know what? I just can't do this anymore!427558303
http://bugs.winehq.org/show_bug.cgi?id=2505
Summary: when loading Becky/Rebecca with wine all my icons on the
kde panel get's moved around and program dont display
graphics ok
Product: Wine
Version: 20040408
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arnvid(a)isd.no
when loading this app the following happends.
1) the icons on the kde panel get's large "150-250" pixels wide space and seem
to get moved around
2) The application itself has a tree/index on the left side and it does only
display the first element.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2503
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:06 -------
Sorry, I fired off three copies of this report (of Bug 2502) accidentally.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2504
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:06 -------
Sorry, I fired off three copies of this report (of Bug 2502) accidentally.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2502
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:03 -------
*** Bug 2503 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2503
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:01 -------
*** Bug 2504 has been marked as a duplicate of this bug. ***
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:01 -------
*** This bug has been marked as a duplicate of 2502 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2503
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 13:01 -------
*** Bug 2504 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2504
Andrew.Talbot(a)talbotville.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2004-06-10 12:59 -------
*** This bug has been marked as a duplicate of 2503 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2504
Summary: Undefined References Prevent Compilation
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch http://cvs.winehq.org/patch.py?id=14038 causes widl.c to break compilation
because of undefined references:-
In function `main':
wpp_add_include_path, wpp_add_cmdline_define, xstrdup, yydebug, yy_flex_debug,
wpp_set_debug, wpp_add_cmdline_define, chat, wpp_parse_temp, yyin,
yyparse, dup_basename, wpp_parse, rm_tempfile, abort_import.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2503
Summary: Undefined References Prevent Compilation
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch http://cvs.winehq.org/patch.py?id=14038 causes widl.c to break compilation
because of undefined references:-
In function `main':
wpp_add_include_path, wpp_add_cmdline_define, xstrdup, yydebug, yy_flex_debug,
wpp_set_debug, wpp_add_cmdline_define, chat, wpp_parse_temp, yyin,
yyparse, dup_basename, wpp_parse, rm_tempfile, abort_import.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2502
Summary: Undefined References Prevent Compilation
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch http://cvs.winehq.org/patch.py?id=14038 causes widl.c to break compilation
because of undefined references:-
In function `main':
wpp_add_include_path, wpp_add_cmdline_define, xstrdup, yydebug, yy_flex_debug,
wpp_set_debug, wpp_add_cmdline_define, chat, wpp_parse_temp, yyin,
yyparse, dup_basename, wpp_parse, rm_tempfile, abort_import.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2421
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 20:58 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=699
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 20:56 -------
Thank you, Thank you, Thank yo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2501
tigergreg9(a)mad.scientist.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2501
Summary: Modplug Tracker (and probably others?) exit before
startup
Product: Wine
Version: 20040914
Platform: Other
URL: http://www.modplug.com/modplug/download.php3?session=&do
wnload=Tracker
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tigergreg9(a)mad.scientist.com
When attempting to run modplug tracker on fc2 (might happen on other distros?),
WINE exits immediately with the error :
"wine-pthread: virtual.c:703: map_file_into_view: Assertion `start + size <=
view->size' failed.
Aborted"
Instead, it should come up normally, showing the splash screen and taking you
into an empty (no document loaded) view.
Note that I _am_ able to run other exe's, just not mpt and that I am unusre as
to the depth and breadth of this error.
The error shows itself in (at least) the 20040914 source and redhat rpm and the
20040813 rpm.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2340
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mstefani(a)redhat.com 2004-04-10 16:34 -------
This is the cvs commit message for the fix to the problem:
http://www.winehq.org/hypermail/wine-cvs/2004/10/0018.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2340
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |telefrancisco(a)lycos.es
------- Additional Comments From mstefani(a)redhat.com 2004-04-10 16:33 -------
*** Bug 2421 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2421
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From mstefani(a)redhat.com 2004-04-10 16:33 -------
*** This bug has been marked as a duplicate of 2340 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=699
------- Additional Comments From jnewman(a)codeweavers.com 2004-04-10 14:54 -------
I will look into creating a bugzilla CVS tree on winehq.org. Seems that there is
enough interest in tweaking/fixing our "BRANCH" of bugzilla that it wouldn't
hurt having it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2433
------- Additional Comments From jnewman(a)codeweavers.com 2004-04-10 14:51 -------
AFAIK, winesetuptk is no longer maintained. Recent changes in wine have also
removed any need to use winesetuptk.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2494
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 14:12 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1621
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 14:09 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2215
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 14:06 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1634
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 14:08 -------
Resolving Invalid
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=695
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-04-10 14:02 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2494
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From mstefani(a)redhat.com 2004-04-10 12:11 -------
*** This bug has been marked as a duplicate of 2433 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2494
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From mstefani(a)redhat.com 2004-04-10 12:07 -------
WineSetupTk is obsolete and will be replaced by wineconfig which comes with Wine.
WineSetupTk is so out of date that it dosn't work anymore with the existing Wine
configuration file.
The only problem is that wineconfig isn't ready yet (it won't save the changes
made).
Somebody is already working on fixing the documentation, see
http://www.winehq.org/hypermail/wine-devel/2004/09/0716.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1621
jnewman(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From jnewman(a)codeweavers.com 2004-04-10 09:27 -------
set default font to this:
font-family: "bitstream vera sans", "verdana", "arial", "helvetica", sans-serif;
Should cover all the bases.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2215
jnewman(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |jnewman(a)codeweavers.com
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=695
h.davies1(a)physics.ox.ac.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From h.davies1(a)physics.ox.ac.uk 2004-04-10 04:04 -------
This is now done
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1265
------- Additional Comments From pmcnett(a)pm-sc.com 2004-04-10 00:03 -------
The status of this bug is that it needs the second patch, but IIRC Alexandre won't commit it
because the patch only hides deeper issues without actually resolving the underlying problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1265
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 20:56 -------
What is the status of this bug?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1802
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 20:14 -------
Resolving as Fixed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1802
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|jnewman(a)codeweavers.com |wine-bugs(a)winehq.org
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1214
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|jnewman(a)codeweavers.com |wine-bugs(a)winehq.org
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2494
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2487
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2391
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2215
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1829
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1783
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1634
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1621
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1484
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:46 -------
This is no longer a problem
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1484
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
Summary|(broken link) wine-user |(broken link) wine-user
|guide points to Wine |guide points to Wine
|Troubleshooting Guide |Troubleshooting Guide
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1196
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:42 -------
No detail
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1196
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|web-admin(a)winehq.org |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2500
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:29 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2476
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:29 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2470
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:28 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2464
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:28 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2456
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:28 -------
closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2454
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:27 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2449
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:27 -------
closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2446
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:26 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2438
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:25 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2425
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:24 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2419
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:24 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2415
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:23 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2407
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:23 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2402
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:23 -------
closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2398
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:11 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2385
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:11 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2378
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:10 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2375
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:10 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2374
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:09 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2370
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-10 19:09 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.