Revision 89ba1a73

b/vl.c
1288 1288
{
1289 1289
    int fd_out;
1290 1290

  
1291
    fd_out = open(file_out, O_WRONLY | O_TRUNC | O_CREAT | O_BINARY);
1291
    fd_out = open(file_out, O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666);
1292 1292
    if (fd_out < 0)
1293 1293
        return NULL;
1294 1294
    return qemu_chr_open_fd(-1, fd_out);

Also available in: Unified diff