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

Diff for /src/usr.bin/ssh/sftp-glob.c between version 1.32 and 1.33

version 1.32, 2023/09/08 05:56:13 version 1.33, 2023/09/10 23:12:32
Line 29 
Line 29 
 #include "sftp-common.h"  #include "sftp-common.h"
 #include "sftp-client.h"  #include "sftp-client.h"
   
 int remote_glob(struct sftp_conn *, const char *, int,  int sftp_glob(struct sftp_conn *, const char *, int,
     int (*)(const char *, int), glob_t *);      int (*)(const char *, int), glob_t *);
   
 struct SFTP_OPENDIR {  struct SFTP_OPENDIR {
Line 107 
Line 107 
 }  }
   
 int  int
 remote_glob(struct sftp_conn *conn, const char *pattern, int flags,  sftp_glob(struct sftp_conn *conn, const char *pattern, int flags,
     int (*errfunc)(const char *, int), glob_t *pglob)      int (*errfunc)(const char *, int), glob_t *pglob)
 {  {
         int r;          int r;

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33