]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: convert a last quad_t to int64_t. ok deraadt djm
authortedu@openbsd.org <tedu@openbsd.org>
Thu, 8 May 2025 17:32:53 +0000 (17:32 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Tue, 20 May 2025 08:03:11 +0000 (18:03 +1000)
OpenBSD-Commit-ID: 1c9e01ba1a9ccf442a9cdf10f222077f66885f1f

auth-passwd.c

index 347d91e251926f31a1b72db2ac4574bc76121599..a9d768891575fb0efce00bd0f3d6638c53549293 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-passwd.c,v 1.48 2020/10/18 11:32:01 djm Exp $ */
+/* $OpenBSD: auth-passwd.c,v 1.49 2025/05/08 17:32:53 tedu Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -133,7 +133,7 @@ static void
 warn_expiry(Authctxt *authctxt, auth_session_t *as)
 {
        int r;
-       quad_t pwtimeleft, actimeleft, daysleft, pwwarntime, acwarntime;
+       int64_t pwtimeleft, actimeleft, daysleft, pwwarntime, acwarntime;
 
        pwwarntime = acwarntime = TWO_WEEKS;