[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: ber_get_next error



At 10:02 AM 6/3/99 -0500, Daniel Wanek wrote:
>Can someone please enlighten me as to what the following error message
>might mean?
>
>ber_get_next on fd 5 failed errno 0 (Error 0)
>*** got 0 of 0 so far

The message indicates that ber_get_next returned LBER_ERROR
or an unexpected tag when reading from file descriptor 5.
errno==0 can indicates either:
	1) an unexpected tag was returned, in which case you
	should see something like:
		ber_get_next: tag 0x%lx len %ld contents:

	2) the errno was overwritten.

Depending upon what the state of the connection, such a message
could be benign.

Kurt