diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-04-26 22:46:21 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-04-26 22:46:21 +0800 |
commit | 71a2b976155b49590348b24bd23c5603f7f483ae (patch) | |
tree | e991517727c72735bee63ab4843586064d068ca8 /shell/e-shell.c | |
parent | b16ffa38da4591b3662aa16781c233b18fb71a17 (diff) | |
download | gsoc2013-evolution-71a2b976155b49590348b24bd23c5603f7f483ae.tar.gz gsoc2013-evolution-71a2b976155b49590348b24bd23c5603f7f483ae.tar.zst gsoc2013-evolution-71a2b976155b49590348b24bd23c5603f7f483ae.zip |
Patch from James Westby <jw+debian@jameswestby.net>: Fix for bug #518103 (Check online status from NetworkManager at startup instead of using the last-used-state)
svn path=/trunk/; revision=35420
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 6fa37a4fd5..6223cc0599 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -717,7 +717,7 @@ e_shell_construct (EShell *shell, if (start_online) e_shell_go_online (shell, NULL, GNOME_Evolution_USER_ONLINE); else - e_shell_go_online (shell, NULL, GNOME_Evolution_FORCED_OFFLINE); + e_shell_go_online (shell, NULL, GNOME_Evolution_USER_OFFLINE); return E_SHELL_CONSTRUCT_RESULT_OK; } |