Lines Matching refs:quote_attrs
1046 sshc->quote_attrs);
1982 if(sshc->quote_attrs)
1983 sftp_attributes_free(sshc->quote_attrs);
2743 sshc->quote_attrs = NULL;
2832 /* We read the file attributes, store them in sshc->quote_attrs
2837 if(sshc->quote_attrs)
2838 sftp_attributes_free(sshc->quote_attrs);
2839 sshc->quote_attrs = sftp_stat(sshc->sftp_session, sshc->quote_path2);
2840 if(!sshc->quote_attrs) {
2853 sshc->quote_attrs->gid = (uint32_t)strtoul(sshc->quote_path1, NULL, 10);
2854 if(sshc->quote_attrs->gid == 0 && !ISDIGIT(sshc->quote_path1[0]) &&
2864 sshc->quote_attrs->flags |= SSH_FILEXFER_ATTR_UIDGID;
2879 sshc->quote_attrs->permissions = perms;
2880 sshc->quote_attrs->flags |= SSH_FILEXFER_ATTR_PERMISSIONS;
2883 sshc->quote_attrs->uid = (uint32_t)strtoul(sshc->quote_path1, NULL, 10);
2884 if(sshc->quote_attrs->uid == 0 && !ISDIGIT(sshc->quote_path1[0]) &&
2894 sshc->quote_attrs->flags |= SSH_FILEXFER_ATTR_UIDGID;
2919 sshc->quote_attrs->atime = (uint32_t)date;
2921 sshc->quote_attrs->mtime = (uint32_t)date;
2923 sshc->quote_attrs->flags |= SSH_FILEXFER_ATTR_ACMODTIME;