Browse Source

*** empty log message ***

cxgeorge 23 years ago
parent
commit
c61e587b69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/express/error_utils.cxx

+ 1 - 1
panda/src/express/error_utils.cxx

@@ -202,7 +202,7 @@ string handle_socket_error(void) {
   }
 
   char msgbuf[1024];
-  sprintf(msgbuf,"%d: %s",err,errmsg);
+  sprintf(msgbuf,"WSA errno %d, errno %d: %s",err,errno,errmsg);
   return string(msgbuf);
 #endif
 }