diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-17 15:42:10 +0800 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-17 15:42:10 +0800 |
commit | a9a4178fe5928bafb3b2cabd437cb554f0d70c30 (patch) | |
tree | 15604710ccd376ad9b3be030d18d244993ab2d80 /e-util | |
parent | 88d3c437e8340d8a61586339305b8f1f0dda3bac (diff) | |
download | gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar.gz gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar.bz2 gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar.lz gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar.xz gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.tar.zst gsoc2013-evolution-a9a4178fe5928bafb3b2cabd437cb554f0d70c30.zip |
Ouch, fix a typo!
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-win32-defaults.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-win32-defaults.c b/e-util/e-win32-defaults.c index eca924936e..99b19d1818 100644 --- a/e-util/e-win32-defaults.c +++ b/e-util/e-win32-defaults.c @@ -148,7 +148,7 @@ _e_win32_register_mailer_impl (WINBOOL system) return; evolutionBinary = _e_win32_sanitize_path (g_build_path (G_DIR_SEPARATOR_S, _e_get_bindir (), EVOBINARY, NULL)); - openCommand = g_strconcat("\"", evolutionBinary, "\" -component=mail", NULL); + openCommand = g_strconcat("\"", evolutionBinary, "\" --component=mail", NULL); g_free (evolutionBinary); if ((returnValue = RegSetValueExA (reg_subkey, NULL, 0, REG_SZ, (const BYTE *)openCommand, strlen (openCommand) + 1))) { g_free (openCommand); |