Re: MySQL 3.23.54 safe_mysqld fix

2002-12-14 Thread Lenz Grimmer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 12 Dec 2002, Nick wrote: > The following code is incorrect in safe_mysqld on 3.23.54 at least (that > is all I have checked) > > Line 162: > if $NOHUP_NICENESS -gt 0 > then > $NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup" > > > T

Re: MySQL 3.23.54 safe_mysqld fix

2002-12-12 Thread tibyke
what an important piece of information, thanks, Nick! tibyke On Thu, 12 Dec 2002 12:46:10 -0600 "Nick" <[EMAIL PROTECTED]> wrote: N> The following code is incorrect in safe_mysqld on 3.23.54 at least (that N> is all I have checked) N> N> Line 162: N> if $NOHUP_NICENESS -gt 0 N> then N>

MySQL 3.23.54 safe_mysqld fix

2002-12-12 Thread Nick
The following code is incorrect in safe_mysqld on 3.23.54 at least (that is all I have checked) Line 162: if $NOHUP_NICENESS -gt 0 then $NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup" This needs to be: if test $NOHUP_NICENESS -gt 0 then NOHUP_NICENESS="nice --$NOHUP_N