summaryrefslogtreecommitdiff
path: root/pathd/pathd.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-03-17 06:39:34 +0100
committerDavid Lamparter <equinox@diac24.net>2021-03-17 06:39:34 +0100
commitd85bf6f1ebd61694a57f0982e13ed87874e411a5 (patch)
tree995d0687fa3cf6f45c277984409ec73164a247d8 /pathd/pathd.c
parent84b3eb42a9166c7557a59279d6cbfb2cf83f8c59 (diff)
pathd: remove mid-string line breaks
cf. workflow.rst ("lines over 80 characters are allowed for text strings to make it possible to search the code for them"), matching Linux kernel coding style. Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'pathd/pathd.c')
-rw-r--r--pathd/pathd.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/pathd/pathd.c b/pathd/pathd.c
index e2c7c95728..14f5167bff 100644
--- a/pathd/pathd.c
+++ b/pathd/pathd.c
@@ -624,8 +624,7 @@ void srte_candidate_set_metric(struct srte_candidate *candidate,
char endpoint[46];
ipaddr2str(&policy->endpoint, endpoint, sizeof(endpoint));
zlog_debug(
- "SR-TE(%s, %u): candidate %s %sconfig metric %s (%u) set to %f "
- "(is-bound: %s; is_computed: %s)",
+ "SR-TE(%s, %u): candidate %s %sconfig metric %s (%u) set to %f (is-bound: %s; is_computed: %s)",
endpoint, policy->color, candidate->name,
required ? "required " : "", srte_candidate_metric_name(type),
type, value, is_bound ? "true" : "false",
@@ -659,8 +658,7 @@ void srte_lsp_set_metric(struct srte_lsp *lsp,
char endpoint[46];
ipaddr2str(&policy->endpoint, endpoint, sizeof(endpoint));
zlog_debug(
- "SR-TE(%s, %u): candidate %s %slsp metric %s (%u) set to %f "
- "(is-bound: %s; is_computed: %s)",
+ "SR-TE(%s, %u): candidate %s %slsp metric %s (%u) set to %f (is-bound: %s; is_computed: %s)",
endpoint, policy->color, candidate->name,
required ? "required " : "", srte_candidate_metric_name(type),
type, value, is_bound ? "true" : "false",
@@ -981,8 +979,7 @@ void srte_candidate_unset_segment_list(const char *originator, bool force)
if (segment_list->protocol_origin
== SRTE_ORIGIN_LOCAL) {
zlog_warn(
- "Cannot unset segment list %s because it "
- "was created locally",
+ "Cannot unset segment list %s because it was created locally",
segment_list->name);
continue;
}