summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-07-18 16:13:02 +1000
committerDamien Miller <djm@mindrot.org>2013-07-18 16:13:02 +1000
commit746d1a6c524d2e90ebe98cc29e42573a3e1c3c1b (patch)
treecd2b6afe877d10ed89f10417570dd31905c71dcb /sftp.c
parentce98654674648fb7d58f73edf6aa398656a2dba4 (diff)
- djm@cvs.openbsd.org 2013/07/12 00:20:00
[sftp.c ssh-keygen.c ssh-pkcs11.c] fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sftp.c b/sftp.c
index f50a4bb6a..f0daaefa4 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.146 2013/06/04 20:42:36 dtucker Exp $ */ 1/* $OpenBSD: sftp.c,v 1.147 2013/07/12 00:20:00 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -1830,7 +1830,8 @@ static unsigned char
1830complete(EditLine *el, int ch) 1830complete(EditLine *el, int ch)
1831{ 1831{
1832 char **argv, *line, quote; 1832 char **argv, *line, quote;
1833 u_int argc, carg, cursor, len, terminated, ret = CC_ERROR; 1833 int argc, carg;
1834 u_int cursor, len, terminated, ret = CC_ERROR;
1834 const LineInfo *lf; 1835 const LineInfo *lf;
1835 struct complete_ctx *complete_ctx; 1836 struct complete_ctx *complete_ctx;
1836 1837