diff -r c8ae7c5d1ad0 -r 366db54481aa pidgin/win32/winpidgin.c --- a/pidgin/win32/winpidgin.c Fri Jul 13 12:31:53 2007 +0000 +++ b/pidgin/win32/winpidgin.c Fri Jul 13 13:57:59 2007 +0000 @@ -586,8 +586,8 @@ dll_prep(); winpidgin_set_locale(); - /* If help or version flag used, do not check Mutex */ - if (!strstr(lpszCmdLine, "-h") && !strstr(lpszCmdLine, "-v")) + /* If help, version or multiple flag used, do not check Mutex */ + if (!strstr(lpszCmdLine, "-h") && !strstr(lpszCmdLine, "-v") && !strstr(lpszCmdLine, "-m")) if (!getenv("PIDGIN_MULTI_INST") && !winpidgin_set_running()) return 0;