summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-12-04 18:48:58 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-12-04 18:49:02 +0300
commitd0c8de55e3a602a1758ba587fa3bba7699e68a0e (patch)
tree9b5e7aa9f4913d69f8499d8c03f65beee1bfaf9a
parentb9e432bb0f10cafa91875d9d3d73e6d559f119e4 (diff)
warning fix
-rw-r--r--protocols/JabberG/src/jabber_auth.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_auth.cpp b/protocols/JabberG/src/jabber_auth.cpp
index 86c5495a1f..8efbd0d8ce 100644
--- a/protocols/JabberG/src/jabber_auth.cpp
+++ b/protocols/JabberG/src/jabber_auth.cpp
@@ -134,7 +134,7 @@ public:
if (info->gssapiHostName && info->gssapiHostName[0]) {
wchar_t *szFullUserNameU = wcsupr(mir_wstrdup(szFullUserName));
- mir_snwprintf(szSpn, dwSpnLen, L"xmpp/%s/%s@%s", info->gssapiHostName, szFullUserName, szFullUserNameU);
+ mir_snwprintf(szSpn, dwSpnLen, L"xmpp/%S/%s@%s", info->gssapiHostName, szFullUserName, szFullUserNameU);
mir_free(szFullUserNameU);
}
else {