diff options
author | des <des@FreeBSD.org> | 2003-04-23 16:53:02 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-04-23 16:53:02 +0000 |
commit | 6d34992e86f885f08b7df6e18a0b6af25ec2d664 (patch) | |
tree | 1a380064758bab3bc985ef1cc15a7b6633825c0f /crypto/openssh/sftp-common.c | |
parent | df96ff7f3774ba5a36cf1c6729762872945cc60a (diff) | |
parent | 85b37b9574631df0f7e774dda373514195c74b29 (diff) | |
download | FreeBSD-src-6d34992e86f885f08b7df6e18a0b6af25ec2d664.zip FreeBSD-src-6d34992e86f885f08b7df6e18a0b6af25ec2d664.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r113908,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'crypto/openssh/sftp-common.c')
-rw-r--r-- | crypto/openssh/sftp-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/sftp-common.c b/crypto/openssh/sftp-common.c index 0823454..31d4138 100644 --- a/crypto/openssh/sftp-common.c +++ b/crypto/openssh/sftp-common.c @@ -24,7 +24,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sftp-common.c,v 1.7 2002/09/11 22:41:50 djm Exp $"); +RCSID("$OpenBSD: sftp-common.c,v 1.8 2002/10/16 14:31:48 itojun Exp $"); #include "buffer.h" #include "bufaux.h" @@ -208,6 +208,6 @@ ls_file(char *name, struct stat *st, int remote) glen = MAX(strlen(group), 8); snprintf(buf, sizeof buf, "%s %3d %-*s %-*s %8llu %s %s", mode, st->st_nlink, ulen, user, glen, group, - (u_int64_t)st->st_size, tbuf, name); + (unsigned long long)st->st_size, tbuf, name); return xstrdup(buf); } |