mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-20 14:03:39 +03:00
Merge pull request #2546 from torstehu/fix-typo3
treewide: fix typos and spacing
This commit is contained in:
commit
ef9fde5378
@ -2852,7 +2852,7 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
|
||||
|
||||
/* Versions before 228 did not carry a state change timestamp. In this case, take the current time. This is
|
||||
* useful, so that timeouts based on this timestamp don't trigger too early, and is in-line with the logic from
|
||||
* before 228 where the base for timeouts was not peristet across reboots. */
|
||||
* before 228 where the base for timeouts was not persistent across reboots. */
|
||||
|
||||
if (!dual_timestamp_is_set(&u->state_change_timestamp))
|
||||
dual_timestamp_get(&u->state_change_timestamp);
|
||||
|
@ -2638,7 +2638,7 @@ _public_ int sd_journal_enumerate_fields(sd_journal *j, const char **field) {
|
||||
}
|
||||
}
|
||||
|
||||
/* We use OBJECT_UNUSED here, so that the iteator below doesn't remove our mmap window */
|
||||
/* We use OBJECT_UNUSED here, so that the iterator below doesn't remove our mmap window */
|
||||
r = journal_file_move_to_object(f, OBJECT_UNUSED, j->fields_offset, &o);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
@ -1248,7 +1248,7 @@ static int nsec3_is_good(DnsResourceRecord *rr, DnsResourceRecord *nsec3) {
|
||||
if (rr->key->type != DNS_TYPE_NSEC3)
|
||||
return 0;
|
||||
|
||||
/* RFC 5155, Section 8.2 says we MUST ignore NSEC3 RRs with flags != 0 or 1 */
|
||||
/* RFC 5155, Section 8.2 says we MUST ignore NSEC3 RRs with flags != 0 or 1 */
|
||||
if (!IN_SET(rr->nsec3.flags, 0, 1))
|
||||
return 0;
|
||||
|
||||
|
@ -2170,7 +2170,7 @@ int dns_packet_extract(DnsPacket *p) {
|
||||
}
|
||||
|
||||
if (!dns_name_is_root(DNS_RESOURCE_KEY_NAME(rr->key))) {
|
||||
/* If the OPT RR qis not owned by the root domain, then it is bad, let's ignore
|
||||
/* If the OPT RR is not owned by the root domain, then it is bad, let's ignore
|
||||
* it. */
|
||||
log_debug("OPT RR is not owned by root domain, ignoring.");
|
||||
bad_opt = true;
|
||||
|
@ -1450,7 +1450,7 @@ static int dns_resource_record_compare_func(const void *a, const void *b) {
|
||||
if (dns_resource_record_equal(x, y))
|
||||
return 0;
|
||||
|
||||
/* This is a bit dirty, we don't implement proper odering, but
|
||||
/* This is a bit dirty, we don't implement proper ordering, but
|
||||
* the hashtable doesn't need ordering anyway, hence we don't
|
||||
* care. */
|
||||
return x < y ? -1 : 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user