summaryrefslogtreecommitdiff
path: root/sftp-common.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
commitb4c774cf8878d9100fde92ff4e938671c3b0301b (patch)
treea2dff9a498a7c4cdeddace98c2c34c7a2e3689fb /sftp-common.h
parent16ae3d0dba5f81e5602798b915105284033dea75 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:33:07
[servconf.h serverloop.h session.h sftp-client.h sftp-common.h sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'sftp-common.h')
-rw-r--r--sftp-common.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sftp-common.h b/sftp-common.h
index 6dc1a32f8..3e4f502b0 100644
--- a/sftp-common.h
+++ b/sftp-common.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-common.h,v 1.1 2001/02/04 11:11:54 djm Exp $ */ 1/* $OpenBSD: sftp-common.h,v 1.2 2001/06/26 06:33:01 itojun Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -39,17 +39,17 @@ struct Attrib {
39}; 39};
40 40
41/* Clear contents of attributes structure */ 41/* Clear contents of attributes structure */
42void attrib_clear(Attrib *a); 42void attrib_clear(Attrib *);
43 43
44/* Convert from struct stat to filexfer attribs */ 44/* Convert from struct stat to filexfer attribs */
45void stat_to_attrib(struct stat *st, Attrib *a); 45void stat_to_attrib(struct stat *, Attrib *);
46 46
47/* Decode attributes in buffer */ 47/* Decode attributes in buffer */
48Attrib *decode_attrib(Buffer *b); 48Attrib *decode_attrib(Buffer *);
49 49
50/* Encode attributes to buffer */ 50/* Encode attributes to buffer */
51void encode_attrib(Buffer *b, Attrib *a); 51void encode_attrib(Buffer *, Attrib *);
52 52
53/* Convert from SSH2_FX_ status to text error message */ 53/* Convert from SSH2_FX_ status to text error message */
54const char *fx2txt(int status); 54const char *fx2txt(int);
55 55