summaryrefslogtreecommitdiff
path: root/sftp-common.h
diff options
context:
space:
mode:
authormouring <mouring>2001-07-04 04:07:12 +0000
committermouring <mouring>2001-07-04 04:07:12 +0000
commit0e6a0ff6aa41b46017956a0e72184f87a65295a7 (patch)
treed7c0ab850132eb5672b5bf59e7c0193f90a222af /sftp-common.h
parent56cf9ce5941a5cd98d2241add6b5c5aad6101ef4 (diff)
downloadopenssh-0e6a0ff6aa41b46017956a0e72184f87a65295a7.tar.gz
- 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 6dc1a32f..3e4f502b 100644
--- a/sftp-common.h
+++ b/sftp-common.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-common.h,v 1.1 2001/02/04 11:11:54 djm Exp $ */
+/* $OpenBSD: sftp-common.h,v 1.2 2001/06/26 06:33:01 itojun Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -39,17 +39,17 @@ struct Attrib {
};
/* Clear contents of attributes structure */
-void attrib_clear(Attrib *a);
+void attrib_clear(Attrib *);
/* Convert from struct stat to filexfer attribs */
-void stat_to_attrib(struct stat *st, Attrib *a);
+void stat_to_attrib(struct stat *, Attrib *);
/* Decode attributes in buffer */
-Attrib *decode_attrib(Buffer *b);
+Attrib *decode_attrib(Buffer *);
/* Encode attributes to buffer */
-void encode_attrib(Buffer *b, Attrib *a);
+void encode_attrib(Buffer *, Attrib *);
/* Convert from SSH2_FX_ status to text error message */
-const char *fx2txt(int status);
+const char *fx2txt(int);