aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stable/server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stable/server.cpp b/src/stable/server.cpp
index d1cce45..29027ba 100644
--- a/src/stable/server.cpp
+++ b/src/stable/server.cpp
@@ -69,7 +69,7 @@ void Bu::Server::scan()
69 char buf[1024]; 69 char buf[1024];
70 strerror_r( errno, buf, 1024 ); 70 strerror_r( errno, buf, 1024 );
71 throw ExceptionBase( 71 throw ExceptionBase(
72 Bu::String("Error attempting to scan open connections: %1").arg( buf ).end().getStr() 72 Bu::String("Error attempting to scan open connections: %1: %2").arg( errno ).arg( buf ).end().getStr()
73 ); 73 );
74 } 74 }
75 75