]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[script] Remove "Aborting on <line>" message
authorMichael Brown <mcb30@ipxe.org>
Mon, 29 Nov 2010 14:38:03 +0000 (14:38 +0000)
committerMichael Brown <mcb30@ipxe.org>
Mon, 29 Nov 2010 14:38:03 +0000 (14:38 +0000)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/image/script.c

index 1c3ff82e2d3cdf8ee5291daac6cf33471126304e..044bb0161cc48d51cc7432343157ebf5e65c9e86 100644 (file)
@@ -125,10 +125,8 @@ static int script_exec_line ( const char *line ) {
                return 0;
 
        /* Execute command */
-       if ( ( rc = system ( line ) ) != 0 ) {
-               printf ( "Aborting on \"%s\"\n", line );
+       if ( ( rc = system ( line ) ) != 0 )
                return rc;
-       }
 
        return 0;
 }