diff options
Diffstat (limited to 'apps/plugins/chessbox')
| -rw-r--r-- | apps/plugins/chessbox/chessbox.c | 2 | ||||
| -rw-r--r-- | apps/plugins/chessbox/chessbox_pgn.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/chessbox/chessbox.c b/apps/plugins/chessbox/chessbox.c index 72a8b23..45f052d 100644 --- a/apps/plugins/chessbox/chessbox.c +++ b/apps/plugins/chessbox/chessbox.c @@ -275,7 +275,7 @@ void cb_saveposition ( void ) { rb->splash ( 0 , "Saving position" ); - fd = rb->open(SAVE_FILE, O_WRONLY|O_CREAT); + fd = rb->open(SAVE_FILE, O_WRONLY|O_CREAT, 0666); computer++; rb->write(fd, &(computer), sizeof(computer)); computer--; opponent++; rb->write(fd, &(opponent), sizeof(opponent)); opponent--; diff --git a/apps/plugins/chessbox/chessbox_pgn.c b/apps/plugins/chessbox/chessbox_pgn.c index a165e3e..3d699a7 100644 --- a/apps/plugins/chessbox/chessbox_pgn.c +++ b/apps/plugins/chessbox/chessbox_pgn.c @@ -670,7 +670,7 @@ void pgn_parse_game(const char* filename, rb->read_line(fhandler, line_buffer, sizeof line_buffer); } - loghandler = rb->open(LOG_FILE, O_WRONLY | O_CREAT); + loghandler = rb->open(LOG_FILE, O_WRONLY | O_CREAT, 0666); GNUChess_Initialize(); @@ -829,7 +829,7 @@ void pgn_store_game(struct pgn_game_node* game){ ply_count++; } - fhandler = rb->open(PGN_FILE, O_WRONLY|O_CREAT|O_APPEND); + fhandler = rb->open(PGN_FILE, O_WRONLY|O_CREAT|O_APPEND, 0666); /* the first 7 tags are mandatory according to the PGN specification so we |