Johannes Schindelin wrote:
>@@ -1263,6 +1263,8 @@ ash_vmsg(const char *msg, va_list ap)
>                       fprintf(stderr, "line %d: ", startlinno);
>       }
>       vfprintf(stderr, msg, ap);
>+      if (strerr)
>+              vfprintf(stderr, ": ", strerr);
>       newline_and_flush(stderr);
> }
> 

I think that should be:

>+      if (strerr)
>+              fprintf(stderr, ": %s", strerr);

Ron
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to