# HG changeset patch # User reimar # Date 1216143352 0 # Node ID 58d731fe531c163d621632e527b0ce0c7674f443 # Parent d2f920cb9847f03fe9ad9cd901027b30b708160d Replace S_IREAD|S_IWRITE by POSIX-compatible S_IRUSR|S_IWUSR (not exactly the same, but should not matter). diff -r d2f920cb9847 -r 58d731fe531c stream/stream_cddb.c --- a/stream/stream_cddb.c Tue Jul 15 16:39:26 2008 +0000 +++ b/stream/stream_cddb.c Tue Jul 15 17:35:52 2008 +0000 @@ -390,7 +390,7 @@ sprintf( file_name, "%s%08lx", cddb_data->cache_dir, cddb_data->disc_id ); - file_fd = creat(file_name, S_IREAD|S_IWRITE); + file_fd = creat(file_name, S_IRUSR|S_IWUSR); if( file_fd<0 ) { perror("create"); return -1;