I did not see any RT posting for this bug report.  Did I just miss it?  If so, humble apologies.
Chris Brook
 


Openssl 097d with WinCE build has syntax error.

        clarm.exe /Fotmp32_ARM\apps.obj -DMONOLITH -Iinc32 -Itmp32_ARM /W3 /WX /Ox /O2 /Ob2 /Gs0 /GF /Gy /nologo -DWCEPL
ATFORM=MS_POCKET_PC_2000 -DARM -D_ARM_ -DUNDER_CE=300 -D_WIN32_CE=300 -DUNICODE -D_UNICODE -DWIN32 -DWIN32_LEAN_AND_MEAN
 -DL_ENDIAN -DDSO_WIN32 -DNO_CHMOD -Ih:\wcecompat/include /Fdout32_ARM -DOPENSSL_NO_KRB5  -c .\apps\apps.c
apps.c
.\apps\apps.c(1621) : error C2143: syntax error : missing ')' before 'goto'
.\apps\apps.c(1896) : error C2143: syntax error : missing ')' before 'goto'
.\apps\apps.c(1932) : error C2143: syntax error : missing ')' before 'goto'
NMAKE : fatal error U1077: 'clarm.exe' : return code '0x2'
Stop.


OpenSSL 097d has
       if (errno != ENOENT
#ifdef  ENOTDIR
          && errno != ENOTDIR)
#endif
          goto err;

It is supposed to be
       if (errno != ENOENT
#ifdef  ENOTDIR
          && errno != ENOTDIR
#endif
         )
         goto err;



Reply via email to