1
1
Aris, how should we print an error?


git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@257 7dcaeef0-15fb-0310-b436-a5af3365683c
Этот коммит содержится в:
Andreas Schneider 2009-03-11 09:53:56 +00:00
родитель 081adeb3d6
Коммит 39a8009e78

Просмотреть файл

@ -72,12 +72,16 @@ struct socket {
* \internal
* \brief inits the socket system (windows specific)
*/
void ssh_socket_init(void){
void ssh_socket_init(void) {
#ifdef _WIN32
struct WSAData wsaData;
if (WSAStartup(MAKEWORD(2, 0), &wsaData)) {
ssh_say(1,"Error initialising Windows sockets.\n");
}
struct WSAData wsaData;
if (WSAStartup(MAKEWORD(2, 0), &wsaData)) {
/* FIXME print error */
}
#else
/* not useed in unix */
(void) session;
#endif
}
/*