Add an missing argument to open(2). If O_CREAT flag is specified,

file permission has to be specified as well.
This commit is contained in:
pjd 2012-01-04 07:04:43 +00:00
parent 2886f1415c
commit 8cedef5e19

View File

@ -828,7 +828,7 @@ MPConfigTableHeader( u_int32_t pap )
int ofd;
u_char dumpbuf[ 4096 ];
ofd = open( "/tmp/mpdump", O_CREAT | O_RDWR );
ofd = open( "/tmp/mpdump", O_CREAT | O_RDWR, 0666 );
seekEntry( paddr );
readEntry( dumpbuf, 1024 );
write( ofd, dumpbuf, 1024 );