mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
journal-gatewayd: use skip_leading_chars where appropriate
Prompted by c5d6754725
This commit is contained in:
parent
3d6d879d26
commit
ee0373cb80
@ -133,7 +133,7 @@ static inline char *truncate_nl(char *s) {
|
||||
return truncate_nl_full(s, NULL);
|
||||
}
|
||||
|
||||
static inline char *skip_leading_chars(const char *s, const char *bad) {
|
||||
static inline char* skip_leading_chars(const char *s, const char *bad) {
|
||||
if (!s)
|
||||
return NULL;
|
||||
|
||||
|
@ -446,17 +446,14 @@ static int request_parse_range(
|
||||
return -EINVAL;
|
||||
|
||||
m->n_skip = 0;
|
||||
|
||||
range_after_eq = startswith(range, "entries=");
|
||||
if (range_after_eq) {
|
||||
range_after_eq += strspn(range_after_eq, WHITESPACE);
|
||||
return request_parse_range_entries(m, range_after_eq);
|
||||
}
|
||||
if (range_after_eq)
|
||||
return request_parse_range_entries(m, skip_leading_chars(range_after_eq, /* bad = */ NULL));
|
||||
|
||||
range_after_eq = startswith(range, "realtime=");
|
||||
if (range_after_eq) {
|
||||
range_after_eq += strspn(range_after_eq, WHITESPACE);
|
||||
return request_parse_range_time(m, range_after_eq);
|
||||
}
|
||||
if (range_after_eq)
|
||||
return request_parse_range_time(m, skip_leading_chars(range_after_eq, /* bad = */ NULL));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user