diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-23 09:30:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-23 09:30:15 +0000 |
commit | 4cf52d95719c13d18c74a21704c0837e72d8f8f2 (patch) | |
tree | fd4c77b9a95803b2c01eeca982759214d8497bd3 /usr.bin/ssh/sftp-int.c | |
parent | 848cff039827b93f79dd8b6611cc087984bd262b (diff) |
bunch of u_int vs int stuff
Diffstat (limited to 'usr.bin/ssh/sftp-int.c')
-rw-r--r-- | usr.bin/ssh/sftp-int.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-int.c b/usr.bin/ssh/sftp-int.c index d4331419c9d..3d8503585be 100644 --- a/usr.bin/ssh/sftp-int.c +++ b/usr.bin/ssh/sftp-int.c @@ -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 <glob.h> @@ -837,7 +837,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); |