Browse Source

Merge branch '1680_exit_on_non_local_vfs'

* 1680_exit_on_non_local_vfs:
  Ticket #1680: Allow 'exit' command on non-local filesystems.
Slava Zanko 15 years ago
parent
commit
fc3f810330
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/command.c

+ 5 - 0
src/command.c

@@ -224,6 +224,11 @@ enter (WInput *cmdline)
 	size_t i, j, cmd_len;
 
 	if (!vfs_current_is_local ()) {
+	    if (strcmp (cmd, "exit") == 0) {
+		quiet_quit_cmd ();
+		return MSG_HANDLED;
+	    }
+
 	    message (D_ERROR, MSG_ERROR,
 		     _
 		     (" Cannot execute commands on non-local filesystems"));