search for: errtext

Displaying 2 results from an estimated 2 matches for "errtext".

2005 Mar 28
1
[BUG] Samba 3.0.11: nmbd forgets to close stderr
To start all the daemons in my Linuxes I use the code like: errtext=`daemon 2>&1` if [ $? -ne 0 ]; do smth. with errtext too... And this used to work for Samba as well. But for 3.0.11 (and very probably not only for this release) this code doesn't work for nmbd: `nmbd 2>&1` freezes forever. But the daemon is started and works at the sam...
2004 Aug 06
1
C++ wrapper for speex
...h = lpHdr->dwBufferLength; does it sound right? If not, your problem is not with the encoding or decoding. 2) Try checking the error state of the classes after each method call, and before you try to call any methods (beyond the constructor). For example: if (enc.err) MessageBox(NULL, enc.errText, "doh", 0); 3) Did you initialize the classes with 8000 as the sample rate? Are you sure your input data is 8000Hz, 16-bit mono? 4) Try checking enc.getFrameSize() and make sure it's 160. 5) Make sure lpHdr->dwBufferLength is always 160 or a multiple of 160. 6) You don...