Changeset 5406:3a3e9d18f561 in roaraudio for libroar/basic.c


Ignore:
Timestamp:
02/13/12 15:16:34 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Ported to Win32 (again...) (pr1)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/basic.c

    r5393 r5406  
    234234   if ( stat(user_sock, &sockstat) == 0 ) { 
    235235    if ( S_ISCHR(sockstat.st_mode) ) { 
     236#ifdef O_NOCTTY 
    236237     return open(user_sock, O_RDWR|O_NOCTTY, 0666); 
     238#else 
     239     return open(user_sock, O_RDWR, 0666); 
     240#endif 
    237241    } 
    238242   } 
Note: See TracChangeset for help on using the changeset viewer.