[BACK]Return to sftp.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sftp.c between version 1.56.2.2 and 1.56.2.3

version 1.56.2.2, 2005/06/05 02:22:39 version 1.56.2.3, 2005/09/02 03:45:00
Line 399 
Line 399 
 {  {
         const char *cp = *cpp, *end;          const char *cp = *cpp, *end;
         char quot;          char quot;
         int i, j;          u_int i, j;
   
         cp += strspn(cp, WHITESPACE);          cp += strspn(cp, WHITESPACE);
         if (!*cp) {          if (!*cp) {
Line 659 
Line 659 
 static int  static int
 do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag)  do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag)
 {  {
         int n, c = 1, colspace = 0, columns = 1;          int n;
           u_int c = 1, colspace = 0, columns = 1;
         SFTP_DIRENT **d;          SFTP_DIRENT **d;
   
         if ((n = do_readdir(conn, path, &d)) != 0)          if ((n = do_readdir(conn, path, &d)) != 0)
                 return (n);                  return (n);
   
         if (!(lflag & LS_SHORT_VIEW)) {          if (!(lflag & LS_SHORT_VIEW)) {
                 int m = 0, width = 80;                  u_int m = 0, width = 80;
                 struct winsize ws;                  struct winsize ws;
                 char *tmp;                  char *tmp;
   
Line 742 
Line 743 
     int lflag)      int lflag)
 {  {
         glob_t g;          glob_t g;
         int i, c = 1, colspace = 0, columns = 1;          u_int i, c = 1, colspace = 0, columns = 1;
         Attrib *a = NULL;          Attrib *a = NULL;
   
         memset(&g, 0, sizeof(g));          memset(&g, 0, sizeof(g));
Line 778 
Line 779 
         }          }
   
         if (!(lflag & LS_SHORT_VIEW)) {          if (!(lflag & LS_SHORT_VIEW)) {
                 int m = 0, width = 80;                  u_int m = 0, width = 80;
                 struct winsize ws;                  struct winsize ws;
   
                 /* Count entries for sort and find longest filename */                  /* Count entries for sort and find longest filename */
Line 1229 
Line 1230 
         char *dir = NULL;          char *dir = NULL;
         char cmd[2048];          char cmd[2048];
         struct sftp_conn *conn;          struct sftp_conn *conn;
         int err;          int err, interactive;
         EditLine *el = NULL;          EditLine *el = NULL;
         History *hl = NULL;          History *hl = NULL;
         HistEvent hev;          HistEvent hev;
Line 1288 
Line 1289 
         setvbuf(stdout, NULL, _IOLBF, 0);          setvbuf(stdout, NULL, _IOLBF, 0);
         setvbuf(infile, NULL, _IOLBF, 0);          setvbuf(infile, NULL, _IOLBF, 0);
   
           interactive = !batchmode && isatty(STDIN_FILENO);
         err = 0;          err = 0;
         for (;;) {          for (;;) {
                 char *cp;                  char *cp;
Line 1297 
Line 1299 
                 signal(SIGINT, SIG_IGN);                  signal(SIGINT, SIG_IGN);
   
                 if (el == NULL) {                  if (el == NULL) {
                         printf("sftp> ");                          if (interactive)
                                   printf("sftp> ");
                         if (fgets(cmd, sizeof(cmd), infile) == NULL) {                          if (fgets(cmd, sizeof(cmd), infile) == NULL) {
                                 printf("\n");                                  if (interactive)
                                           printf("\n");
                                 break;                                  break;
                         }                          }
                         if (batchmode) /* Echo command */                          if (!interactive) { /* Echo command */
                                 printf("%s", cmd);                                  printf("sftp> %s", cmd);
                                   if (strlen(cmd) > 0 &&
                                       cmd[strlen(cmd) - 1] != '\n')
                                           printf("\n");
                           }
                 } else {                  } else {
                         if ((line = el_gets(el, &count)) == NULL || count <= 0)                          if ((line = el_gets(el, &count)) == NULL || count <= 0) {
                                   printf("\n");
                                 break;                                  break;
                           }
                         history(hl, &hev, H_ENTER, line);                          history(hl, &hev, H_ENTER, line);
                         if (strlcpy(cmd, line, sizeof(cmd)) >= sizeof(cmd)) {                          if (strlcpy(cmd, line, sizeof(cmd)) >= sizeof(cmd)) {
                                 fprintf(stderr, "Error: input line too long\n");                                  fprintf(stderr, "Error: input line too long\n");
Line 1328 
Line 1338 
         }          }
         xfree(pwd);          xfree(pwd);
   
           if (el != NULL)
                   el_end(el);
   
         /* err == 1 signifies normal "quit" exit */          /* err == 1 signifies normal "quit" exit */
         return (err >= 0 ? 0 : -1);          return (err >= 0 ? 0 : -1);
 }  }
Line 1457 
Line 1470 
   
                         /* Allow "-" as stdin */                          /* Allow "-" as stdin */
                         if (strcmp(optarg, "-") != 0 &&                          if (strcmp(optarg, "-") != 0 &&
                            (infile = fopen(optarg, "r")) == NULL)                              (infile = fopen(optarg, "r")) == NULL)
                                 fatal("%s (%s).", strerror(errno), optarg);                                  fatal("%s (%s).", strerror(errno), optarg);
                         showprogress = 0;                          showprogress = 0;
                         batchmode = 1;                          batchmode = 1;

Legend:
Removed from v.1.56.2.2  
changed lines
  Added in v.1.56.2.3