(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
This commit is contained in:
Assar Westerlund
2000-07-22 05:58:57 +00:00
parent abe927a06c
commit c4155219d9

View File

@@ -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) {