On Thu, Mar 22, 2012 at 03:25:24PM +0000, Ian Campbell wrote:
Using "> /dev/fd/2" causes stderr to get truncated, which is mangles the log file if the user happens to have redirected it there.
Use ">&2" instead which redirects to the already open stderr and doesn't truncate it.
Thanks, I applied this change.
-Kevin