diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 03:31:17 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 03:31:17 +0800 |
commit | 3e92e7a0eb9944948e9d919b06ae5a0079cd119f (patch) | |
tree | 1c76e128e6c640f6df60d5e4e6044055c55a0cd8 /shell/e-shell-importer.c | |
parent | 1b26832f1402c6e5f40aadb7a95e323fb5dac326 (diff) | |
download | gsoc2013-evolution-3e92e7a0eb9944948e9d919b06ae5a0079cd119f.tar.gz gsoc2013-evolution-3e92e7a0eb9944948e9d919b06ae5a0079cd119f.tar.zst gsoc2013-evolution-3e92e7a0eb9944948e9d919b06ae5a0079cd119f.zip |
Removed unused variable.
* e-shell-importer.c (start_import): Removed unused variable.
svn path=/trunk/; revision=12827
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index 71f6a76806..a419091198 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -358,9 +358,7 @@ start_import (const char *folderpath, /* Only allow importing to /local */ localpath = "/" E_LOCAL_STORAGE_NAME "/"; if (strncmp (folderpath, localpath, strlen (localpath))) { - char *message; - e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, - _("You may only import to local folders")); + e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, _("You may only import to local folders")); return; } |