search for: i_lchdir

Displaying 5 results from an estimated 5 matches for "i_lchdir".

2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...hdir", I_CHDIR }, - { "chgrp", I_CHGRP }, - { "chmod", I_CHMOD }, - { "chown", I_CHOWN }, - { "dir", I_LS }, - { "exit", I_QUIT }, - { "get", I_GET }, - { "mget", I_GET }, - { "help", I_HELP }, - { "lcd", I_LCHDIR }, - { "lchdir", I_LCHDIR }, - { "lls", I_LLS }, - { "lmkdir", I_LMKDIR }, - { "ln", I_SYMLINK }, - { "lpwd", I_LPWD }, - { "ls", I_LS }, - { "lumask", I_LUMASK }, - { "mkdir", I_MKDIR }, - { "progress", I_P...
2007 Dec 12
0
Revisiting sftp tab completion patch
...hdir", I_CHDIR }, - { "chgrp", I_CHGRP }, - { "chmod", I_CHMOD }, - { "chown", I_CHOWN }, - { "dir", I_LS }, - { "exit", I_QUIT }, - { "get", I_GET }, - { "mget", I_GET }, - { "help", I_HELP }, - { "lcd", I_LCHDIR }, - { "lchdir", I_LCHDIR }, - { "lls", I_LLS }, - { "lmkdir", I_LMKDIR }, - { "ln", I_SYMLINK }, - { "lpwd", I_LPWD }, - { "ls", I_LS }, - { "lumask", I_LUMASK }, - { "mkdir", I_MKDIR }, - { "progress", I_P...
2002 Nov 05
0
[PATCH] Add getlink command to sftp
...N 22 + #define I_GETLINK 23 struct CMD { const char *c; *************** *** 91,96 **** --- 92,98 ---- { "exit", I_QUIT }, { "get", I_GET }, { "mget", I_GET }, + { "getlink", I_GETLINK }, { "help", I_HELP }, { "lcd", I_LCHDIR }, { "lchdir", I_LCHDIR }, *************** *** 126,131 **** --- 128,134 ---- printf("chown own path Change owner of file 'path' to 'own'\n"); printf("help Display this help text\n"); printf("get r...
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...; Index: ssh/sftp.c =================================================================== --- ssh.orig/sftp.c 2009-02-10 14:54:58.000000000 +0100 +++ ssh/sftp.c 2009-02-10 15:15:19.000000000 +0100 @@ -98,6 +98,7 @@ int remote_glob(struct sftp_conn *, cons #define I_GET 5 #define I_HELP 6 #define I_LCHDIR 7 +#define I_LINK 25 #define I_LLS 8 #define I_LMKDIR 9 #define I_LPWD 10 @@ -135,6 +136,7 @@ static const struct CMD cmds[] = { { "help", I_HELP }, { "lcd", I_LCHDIR }, { "lchdir", I_LCHDIR }, + { "link", I_LINK }, { "lls", I_LLS },...
2002 Oct 18
1
Patch: sftp client support of "ls [flags] [path [localfile]]" feature
...pwd, lflag); break; } --- 939,945 ---- break; case I_LS: if (!path1) { ! do_globbed_ls(conn, *pwd, *pwd, lflag, NULL); break; } *************** *** 908,914 **** path1 = make_absolute(path1, *pwd); ! do_globbed_ls(conn, path1, tmp, lflag); break; case I_LCHDIR: if (chdir(path1) == -1) { --- 950,956 ---- path1 = make_absolute(path1, *pwd); ! do_globbed_ls(conn, path1, tmp, lflag, path2); break; case I_LCHDIR: if (chdir(path1) == -1) { *** sftp.1.orig Wed Sep 11 19:54:27 2002 --- sftp.1 Fri Oct 18 16:39:56 2002 *************** ***...