1
1

Added printout of owner and group in the sftp example.

Этот коммит содержится в:
Andreas Schneider 2010-02-24 00:26:20 +01:00
родитель f857d4aff7
Коммит ec3af2c5cb

Просмотреть файл

@ -152,10 +152,12 @@ static void do_sftp(ssh_session session){
}
/* reading the whole directory, file by file */
while((file=sftp_readdir(sftp,dir))){
fprintf(stderr, "%30s(%.8o) : %.5d.%.5d : %.10llu bytes\n",
fprintf(stderr, "%30s(%.8o) : %s(%.5d) %s(%.5d) : %.10llu bytes\n",
file->name,
file->permissions,
file->owner,
file->uid,
file->group,
file->gid,
(long long unsigned int) file->size);
sftp_attributes_free(file);