Author: maxime
Email:
Message:
Place this code in store.c after #include directives.
#ifndef HAVE_HSTRERROR
static const char *h_errlist[] = {
"Error 0",
"Unknown host",
"Host name lookup failure",
"Unknown server error",
"No address associated with name"
};
# define hstrerror(err) ((err) <= 4 ? h_errlist[(err)] : "unknown error")
#endif
Reply: <http://www.mnogosearch.org/board/message.php?id=4602>
___________________________________________
If you want to unsubscribe send "unsubscribe general"
to [EMAIL PROTECTED]