summaryrefslogtreecommitdiffstats
path: root/servers/auth_server_lin
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-07-04 23:56:48 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-07-04 23:56:48 -0500
commit6d13afadb8cf8ef0788afaa0d7b4229bc48d0c19 (patch)
treeac97e133f64f6f48c0806b1e63b6b41ba82d3885 /servers/auth_server_lin
parentd5316f5795e3557d032af9a95ba4e5fa88191834 (diff)
downloadulab-6d13afadb8cf8ef0788afaa0d7b4229bc48d0c19.tar.gz
ulab-6d13afadb8cf8ef0788afaa0d7b4229bc48d0c19.zip
Enable character transmission via Kerberos
Diffstat (limited to 'servers/auth_server_lin')
-rw-r--r--servers/auth_server_lin/src/auth_conn.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/servers/auth_server_lin/src/auth_conn.cpp b/servers/auth_server_lin/src/auth_conn.cpp
index 23d0336..db73811 100644
--- a/servers/auth_server_lin/src/auth_conn.cpp
+++ b/servers/auth_server_lin/src/auth_conn.cpp
@@ -343,6 +343,9 @@ void AuthSocket::commandLoop() {
svt.description = m_databaseServiceTypesCursor->value("description").toString();
svt.clientLibrary = m_databaseServiceTypesCursor->value("client_library").toString();
svt.version = m_databaseServiceTypesCursor->value("version").toInt();
+ char tempchar;
+ tempchar = m_databaseServiceTypesCursor->value("single_instance").toInt();
+ svt.singleInstance = (tempchar != 0);
}
if (svt.name == "") {
svt.name = i18n("<unknown>");