diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2018-05-11 05:22:55 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-05-11 05:56:23 +0200 |
commit | fdba503fdfc647ee8a244002f1581e869c1f3d90 (patch) | |
tree | 7278017d65e201009f629acd160bec40f22e7914 /auth2.c | |
parent | upstream: Since the previous commit, ssh regress test sftp-chroot was (diff) | |
download | openssh-fdba503fdfc647ee8a244002f1581e869c1f3d90.tar.xz openssh-fdba503fdfc647ee8a244002f1581e869c1f3d90.zip |
upstream: Explicit cast when snprintf'ing an uint64. Prevents
warnings on platforms where int64 is long not long long. ok djm@
OpenBSD-Commit-ID: 9c5359e2fbfce11dea2d93f7bc257e84419bd001
Diffstat (limited to 'auth2.c')
-rw-r--r-- | auth2.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: auth2.c,v 1.146 2018/04/13 03:57:26 dtucker Exp $ */ +/* $OpenBSD: auth2.c,v 1.147 2018/05/11 03:22:55 dtucker Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -220,7 +220,8 @@ user_specific_delay(const char *user) u_char *hash = xmalloc(len); double delay; - (void)snprintf(b, sizeof b, "%llu%s", options.timing_secret, user); + (void)snprintf(b, sizeof b, "%llu%s", + (unsigned long long)options.timing_secret, user); if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0) fatal("%s: ssh_digest_memory", __func__); /* 0-4.2 ms of delay */ |