Hi Ron,

On Sun, 23 Jul 2017, Ron Yorston wrote:

> 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);

Oops, you're right! Funny how GCC did not catch that error.

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

Reply via email to