diff options
Diffstat (limited to 'shell/e-shell-utils.c')
-rw-r--r-- | shell/e-shell-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c index 5ba0304331..7eb54d8218 100644 --- a/shell/e-shell-utils.c +++ b/shell/e-shell-utils.c @@ -122,7 +122,7 @@ e_shell_folder_name_is_valid (const char *name, return FALSE; } - if (strchr (name, G_DIR_SEPARATOR) != NULL) { + if (strchr (name, E_PATH_SEPARATOR) != NULL) { if (reason_return != NULL) *reason_return = _("Folder name cannot contain slashes."); return FALSE; |