diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp
index c9f477e4..1b1e503a 100644
--- a/daemon/HTTPServer.cpp
+++ b/daemon/HTTPServer.cpp
@@ -675,7 +675,7 @@ namespace http {
s << it->GetMeanLatency() << tr(/* tr: Milliseconds */ "ms") << "";
}
} else { // placeholder for alignment
- s << " ---";
+ s << " --- ";
}
ShowTunnelDetails(s, it->GetState (), false, it->GetNumReceivedBytes ());
s << "\r\n";
@@ -694,7 +694,7 @@ namespace http {
s << it->GetMeanLatency() << tr(/* tr: Milliseconds */ "ms") << "";
}
} else { // placeholder for alignment
- s << " ---";
+ s << " --- ";
}
ShowTunnelDetails(s, it->GetState (), false, it->GetNumSentBytes ());
s << "\r\n";
@@ -703,7 +703,9 @@ namespace http {
s << "\r\n\r\n\r\n\r\n";
if (dest->GetNumIncomingTags () > 0) {
- s << "
" << tr("Incoming Session Tags") << " [" << dest->GetNumIncomingTags () << "] |
\r\n";
+ s << "" << tr("Incoming Session Tags")
+ << " ["
+ << dest->GetNumIncomingTags () << "] |
\r\n";
} else {
s << "" << tr("No Incoming Session Tags") << " |
\r\n";
}
@@ -921,7 +923,7 @@ namespace http {
s << it->GetMeanLatency() << tr(/* tr: Milliseconds */ "ms") << "";
}
} else { // placeholder for alignment
- s << " ---";
+ s << " --- ";
}
ShowTunnelDetails(s, it->GetState (), (it->GetTunnelPool () == ExplPool), it->GetNumReceivedBytes ());
s << "\r\n";
@@ -934,7 +936,7 @@ namespace http {
if(it->LatencyIsKnown())
s << " " << it->GetMeanLatency() << tr("ms") << "";
else // placeholder for alignment
- s << " ---";
+ s << " --- ";
ShowTunnelDetails(s, it->GetState (), (it->GetTunnelPool () == ExplPool), it->GetNumSentBytes ());
s << "\r\n\r\n";
}