http://bugs.winehq.org/show_bug.cgi?id=27761
Summary: different behaviour for "if" conditions check Product: Wine Version: 1.3.23 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: cmd AssignedTo: wine-bugs@winehq.org ReportedBy: iip.umar.rifai@gmail.com
If conditions has different result between windows and wine, I think due to '/' (slash) issue, below is an example: ---------------------------------- D:>if 1==1 echo ok ok
D:>if c==c echo ok ok
D:>if c==1 echo ok
D:>if /c==/c echo ok <--this one is problem, but works on Windows
D:>if /c==/c echo ok ok
D:>if "/c"=="/c" echo ok ok