diff options
author | mouring <mouring> | 2002-06-23 21:27:18 +0000 |
---|---|---|
committer | mouring <mouring> | 2002-06-23 21:27:18 +0000 |
commit | 66b37bfa27d7eff2d3e602620a1e2cde91e1e0f3 (patch) | |
tree | 5dd9b713378cb4a643452c50077d17f7e4e53bda /sftp-int.c | |
parent | ba6722e9c8ae3cad5b9e2b857bc0edf22f5261e7 (diff) | |
download | openssh-66b37bfa27d7eff2d3e602620a1e2cde91e1e0f3.tar.gz |
- deraadt@cvs.openbsd.org 2002/06/23 09:30:14
[sftp-client.c sftp-client.h sftp-common.c sftp-int.c sftp-server.c
sftp.c]
bunch of u_int vs int stuff
Diffstat (limited to 'sftp-int.c')
-rw-r--r-- | sftp-int.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ /* XXX: recursive operations */ #include "includes.h" -RCSID("$OpenBSD: sftp-int.c,v 1.46 2002/03/30 18:51:15 markus Exp $"); +RCSID("$OpenBSD: sftp-int.c,v 1.47 2002/06/23 09:30:14 deraadt Exp $"); #include "buffer.h" #include "xmalloc.h" @@ -835,7 +835,7 @@ parse_dispatch_command(struct sftp_conn *conn, const char *cmd, char **pwd) help(); break; case I_VERSION: - printf("SFTP protocol version %d\n", sftp_proto_version(conn)); + printf("SFTP protocol version %u\n", sftp_proto_version(conn)); break; default: fatal("%d is not implemented", cmdnum); |