summaryrefslogtreecommitdiff
path: root/otr/dllmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'otr/dllmain.cpp')
-rw-r--r--otr/dllmain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/otr/dllmain.cpp b/otr/dllmain.cpp
index 0d8c585..eac42dc 100644
--- a/otr/dllmain.cpp
+++ b/otr/dllmain.cpp
@@ -406,7 +406,7 @@ extern "C" void otr_gui_gone_secure(void *opdata, ConnContext *context) {
bool trusted = (context->active_fingerprint && context->active_fingerprint->trust && strcmp(context->active_fingerprint->trust, "verified") == 0);
char buff[1024];
if(trusted) {
- mir_snprintf(buff, 1024, Translate("Beggining OTR encrypted session with '%s'"), context->username);
+ mir_snprintf(buff, 1024, Translate("Beginning OTR encrypted session with '%s'"), context->username);
//MessageBox(0, buff, Translate("OTR Information"), MB_OK);
if(options.msg_inline)
ShowMessageInline((HANDLE)opdata, buff);
@@ -418,7 +418,7 @@ extern "C" void otr_gui_gone_secure(void *opdata, ConnContext *context) {
} else {
CloseHandle((HANDLE)_beginthreadex(0, 0, verify_fp_thread, context, 0, 0));
- mir_snprintf(buff, 1024, Translate("Beggining OTR encrypted session with '%s'"), context->username);
+ mir_snprintf(buff, 1024, Translate("Beginning OTR encrypted session with '%s'"), context->username);
//MessageBox(0, buff, Translate("OTR Information"), MB_OK);
if(options.msg_inline)
ShowMessageInline((HANDLE)opdata, buff);