1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

bug #460: Remove create flag for /dev/null

This commit is contained in:
Ruben S. Montero 2010-12-30 01:20:01 +01:00
parent e7a05f515f
commit e3e59c04ab

View File

@ -134,7 +134,7 @@ void Scheduler::start()
int fd;
fd = open("/dev/null", O_RDWR|O_CREAT);
fd = open("/dev/null", O_RDWR);
dup2(fd,0);
dup2(fd,1);