Home
last modified time | relevance | path

Searched refs:pw_secs (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/ldap/common/
H A Dcommon.c1643 if ( pw_secs > 0 && errno != ERANGE ) {
1644 if ( pw_secs > 86400 ) {
1645 pw_days = ( pw_secs / 86400 );
1646 pw_secs = ( pw_secs % 86400 );
1648 if ( pw_secs > 3600 ) {
1649 pw_hrs = ( pw_secs / 3600 );
1650 pw_secs = ( pw_secs % 3600 );
1652 if ( pw_secs > 60 ) {
1653 pw_mins = ( pw_secs / 60 );
1654 pw_secs = ( pw_secs % 60 );
[all …]