Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363565
Collapse All | Expand All

(-)print.c.bak (-2 / +2 lines)
Lines 326-334 Link Here
326
  if(DUMA_OUTPUT_FILE != NULL)
326
  if(DUMA_OUTPUT_FILE != NULL)
327
  {
327
  {
328
#if defined(WIN32) && !defined(__CYGWIN__)
328
#if defined(WIN32) && !defined(__CYGWIN__)
329
    fd = _open(DUMA_OUTPUT_FILE, _O_APPEND|_O_CREAT|_O_WRONLY);
329
    fd = _open(DUMA_OUTPUT_FILE, _O_APPEND|_O_CREAT|_O_WRONLY, 00666);
330
#else
330
#else
331
    fd = open(DUMA_OUTPUT_FILE, O_APPEND|O_CREAT|O_WRONLY);
331
    fd = open(DUMA_OUTPUT_FILE, O_APPEND|O_CREAT|O_WRONLY, 00666);
332
#endif
332
#endif
333
    if ( fd >= 0 )
333
    if ( fd >= 0 )
334
    {
334
    {

Return to bug 363565