diff options
author | Mike Buland <mbuland@penny-arcade.com> | 2018-02-02 11:13:30 -0800 |
---|---|---|
committer | Mike Buland <mbuland@penny-arcade.com> | 2018-02-02 11:13:30 -0800 |
commit | ae5b8410403c96879a5014502ec64a1a1530878e (patch) | |
tree | 23d9c475380de9dbbb05ce9254ba0dadff545745 /src | |
parent | 12d4292b5b8dcf4ffc941ebb82a85df63f98d2c4 (diff) | |
download | libbu++-ae5b8410403c96879a5014502ec64a1a1530878e.tar.gz libbu++-ae5b8410403c96879a5014502ec64a1a1530878e.tar.bz2 libbu++-ae5b8410403c96879a5014502ec64a1a1530878e.tar.xz libbu++-ae5b8410403c96879a5014502ec64a1a1530878e.zip |
Update
Diffstat (limited to 'src')
-rw-r--r-- | src/stable/server.cpp | 2 |
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 | ||