From c4155219d92c3ce3bf9ee4731225b40cbdb00828 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sat, 22 Jul 2000 05:58:57 +0000 Subject: [PATCH] (krb5_change_password): clarify an expression, avoiding a warning git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8770 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/changepw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/changepw.c b/lib/krb5/changepw.c index 6ec2233ed..902a0ec3b 100644 --- a/lib/krb5/changepw.c +++ b/lib/krb5/changepw.c @@ -302,7 +302,7 @@ krb5_change_password (krb5_context context, FD_ZERO(&fdset); FD_SET(sock, &fdset); tv.tv_usec = 0; - tv.tv_sec = 1 + 1 << i; + tv.tv_sec = 1 + (1 << i); ret = select (sock + 1, &fdset, NULL, NULL, &tv); if (ret < 0 && errno != EINTR) {