error check got triggered on valid file descriptor 0.

This commit is contained in:
nvt-se 2008-08-21 19:15:41 +00:00
parent 9f9ba7d6d9
commit 10dc0fd152
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell-exec.c,v 1.2 2008/07/03 21:13:13 adamdunkels Exp $
* $Id: shell-exec.c,v 1.3 2008/08/21 19:15:41 nvt-se Exp $
*/
/**
@ -73,7 +73,7 @@ PROCESS_THREAD(shell_exec_process, ev, data)
fd = cfs_open(name, CFS_READ);
if(fd <= 0) {
if(fd < 0) {
shell_output_str(&exec_command,
"exec: could not open ", name);
} else {