diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-05-22 14:17:30 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-05-22 14:17:30 +0000 |
commit | 3407044d99f61abb50e7adad7fd86fbb8ad1d9c2 (patch) | |
tree | cb37b75748f248907690bfbabb65459d59d9522a /otr/dllmain.cpp | |
parent | 4e3c713c6ede8936a30339a0263b6271dc579042 (diff) |
spelling fix
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@176 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'otr/dllmain.cpp')
-rw-r--r-- | otr/dllmain.cpp | 4 |
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);
|