# HG changeset patch # User Daniel Atallah # Date 1184335079 0 # Node ID 850cccc126adc608d527df20df031c5c6e96dcf2 # Parent 15f0c935e6998085732c00a9055a12f43dee70f1 Make the win32 launcher support "--multiple" as well as %PIDGIN_MULTI_INST% diff -r 15f0c935e699 -r 850cccc126ad 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;