diff options
author | djm@openbsd.org <djm@openbsd.org> | 2015-10-15 23:51:40 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-10-16 10:54:08 +1100 |
commit | b1d38a3cc6fe349feb8d16a5f520ef12d1de7cb2 (patch) | |
tree | a582897745d044077ea475859be73d0f5ab2158b /ssh.c | |
parent | 1a2663a15d356bb188196b6414b4c50dc12fd42b (diff) |
upstream commit
fix some signed/unsigned integer type mismatches in
format strings; reported by Nicholas Lemonias
Upstream-ID: 78cd55420a0eef68c4095bdfddd1af84afe5f95c
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.426 2015/09/24 06:15:11 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.427 2015/10/15 23:51:40 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -250,7 +250,7 @@ resolve_host(const char *name, int port, int logerr, char *cname, size_t clen) if (port <= 0) port = default_ssh_port(); - snprintf(strport, sizeof strport, "%u", port); + snprintf(strport, sizeof strport, "%d", port); memset(&hints, 0, sizeof(hints)); hints.ai_family = options.address_family == -1 ? AF_UNSPEC : options.address_family; |