CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2023/09/07 23:56:13
Modified files:
usr.bin/ssh : scp.c sftp-client.c sftp-client.h sftp-glob.c
sftp-usergroup.c sftp.c
Log message:
the sftp code was one of my first contributions to OpenSSH and it
shows - the function names are terrible.
Rename do_blah() to sftp_blah() to make them less so.
Completely mechanical except for sftp_stat() and sftp_lstat() which
change from returning a pointer to a static variable (error-prone) to
taking a pointer to a caller-provided receiver.