diff options
Diffstat (limited to 'sftp-common.c')
-rw-r--r-- | sftp-common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sftp-common.c b/sftp-common.c index 5313b134d..4cea3c305 100644 --- a/sftp-common.c +++ b/sftp-common.c | |||
@@ -24,7 +24,7 @@ | |||
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include "includes.h" | 26 | #include "includes.h" |
27 | RCSID("$OpenBSD: sftp-common.c,v 1.9 2003/05/24 09:30:40 djm Exp $"); | 27 | RCSID("$OpenBSD: sftp-common.c,v 1.10 2003/11/10 16:23:41 jakob Exp $"); |
28 | 28 | ||
29 | #include "buffer.h" | 29 | #include "buffer.h" |
30 | #include "bufaux.h" | 30 | #include "bufaux.h" |
@@ -49,7 +49,7 @@ attrib_clear(Attrib *a) | |||
49 | 49 | ||
50 | /* Convert from struct stat to filexfer attribs */ | 50 | /* Convert from struct stat to filexfer attribs */ |
51 | void | 51 | void |
52 | stat_to_attrib(struct stat *st, Attrib *a) | 52 | stat_to_attrib(const struct stat *st, Attrib *a) |
53 | { | 53 | { |
54 | attrib_clear(a); | 54 | attrib_clear(a); |
55 | a->flags = 0; | 55 | a->flags = 0; |
@@ -67,7 +67,7 @@ stat_to_attrib(struct stat *st, Attrib *a) | |||
67 | 67 | ||
68 | /* Convert from filexfer attribs to struct stat */ | 68 | /* Convert from filexfer attribs to struct stat */ |
69 | void | 69 | void |
70 | attrib_to_stat(Attrib *a, struct stat *st) | 70 | attrib_to_stat(const Attrib *a, struct stat *st) |
71 | { | 71 | { |
72 | memset(st, 0, sizeof(*st)); | 72 | memset(st, 0, sizeof(*st)); |
73 | 73 | ||
@@ -124,7 +124,7 @@ decode_attrib(Buffer *b) | |||
124 | 124 | ||
125 | /* Encode attributes to buffer */ | 125 | /* Encode attributes to buffer */ |
126 | void | 126 | void |
127 | encode_attrib(Buffer *b, Attrib *a) | 127 | encode_attrib(Buffer *b, const Attrib *a) |
128 | { | 128 | { |
129 | buffer_put_int(b, a->flags); | 129 | buffer_put_int(b, a->flags); |
130 | if (a->flags & SSH2_FILEXFER_ATTR_SIZE) | 130 | if (a->flags & SSH2_FILEXFER_ATTR_SIZE) |
@@ -174,7 +174,7 @@ fx2txt(int status) | |||
174 | * drwxr-xr-x 5 markus markus 1024 Jan 13 18:39 .ssh | 174 | * drwxr-xr-x 5 markus markus 1024 Jan 13 18:39 .ssh |
175 | */ | 175 | */ |
176 | char * | 176 | char * |
177 | ls_file(char *name, struct stat *st, int remote) | 177 | ls_file(const char *name, const struct stat *st, int remote) |
178 | { | 178 | { |
179 | int ulen, glen, sz = 0; | 179 | int ulen, glen, sz = 0; |
180 | struct passwd *pw; | 180 | struct passwd *pw; |