Home
last modified time | relevance | path

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

/systemd-251/src/nss-systemd/
Duserdb-glue.c157 ….sp_lstchg = hr->last_password_change_usec == 0 ? 1 : /* map 0 to 1, since 0 means p… in nss_pack_user_record_shadow()
158 hr->last_password_change_usec == UINT64_MAX ? -1 : in nss_pack_user_record_shadow()
159 (long int) (hr->last_password_change_usec / USEC_PER_DAY), in nss_pack_user_record_shadow()
/systemd-251/src/shared/
Duser-record.c35 .last_password_change_usec = UINT64_MAX, in user_record_new()
1513 … json_dispatch_uint64, offsetof(UserRecord, last_password_change_usec), 0 … in user_record_load()
2151 if (h->last_password_change_usec != UINT64_MAX && in user_record_test_password_change_required()
2152 h->last_password_change_usec > n && in user_record_test_password_change_required()
2162 if (h->last_password_change_usec == UINT64_MAX) in user_record_test_password_change_required()
2165 if (h->password_change_min_usec >= UINT64_MAX - h->last_password_change_usec) in user_record_test_password_change_required()
2168 … change_permitted = n >= h->last_password_change_usec + h->password_change_min_usec; in user_record_test_password_change_required()
2175 h->password_change_max_usec >= UINT64_MAX - h->last_password_change_usec)) { in user_record_test_password_change_required()
2180 if (h->last_password_change_usec == UINT64_MAX) in user_record_test_password_change_required()
2189 if (added < UINT64_MAX - h->last_password_change_usec && in user_record_test_password_change_required()
[all …]
Duser-record-nss.c120 SET_IF(hr->last_password_change_usec, in nss_passwd_to_user_record()
152 …AIR_CONDITION(hr->last_password_change_usec != UINT64_MAX, "lastPasswordChangeUSec", JSON_BUILD_UN… in nss_passwd_to_user_record()
Duser-record-show.c53 if (hr->last_password_change_usec != USEC_INFINITY && in user_record_show()
54 hr->last_password_change_usec != hr->last_change_usec) in user_record_show()
55 printf(" Last Passw.: %s\n", FORMAT_TIMESTAMP(hr->last_password_change_usec)); in user_record_show()
Duser-record.h248 uint64_t last_password_change_usec; member
/systemd-251/src/home/
Duser-record-util.c751 if (h->last_password_change_usec != UINT64_MAX && h->last_password_change_usec >= n) in user_record_update_last_changed()
765 h->last_password_change_usec = n; in user_record_update_last_changed()