0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 04:38:52 +02:00

modules/federation/federation: Make all origin string-copying calls the same.

This commit is contained in:
Jason Volk 2019-04-15 14:28:05 -07:00
parent b56df6677e
commit 035e03a35e

View file

@ -62,7 +62,7 @@ ircd::m::feds::perspective(const opts &opts,
v1opts.dynamic = false; v1opts.dynamic = false;
v1opts.remote = string_view v1opts.remote = string_view
{ {
request.origin, strlcpy{request.origin, origin} strlcpy{request.origin, origin}
}; };
const m::v1::key::server_key server_key const m::v1::key::server_key server_key
@ -96,7 +96,7 @@ ircd::m::feds::version(const opts &opts,
opts.dynamic = false; opts.dynamic = false;
opts.remote = string_view opts.remote = string_view
{ {
request.origin, strlcpy{request.origin, origin} strlcpy{request.origin, origin}
}; };
return m::v1::version return m::v1::version
@ -127,7 +127,7 @@ ircd::m::feds::backfill(const opts &opts,
v1opts.limit = opts.argi[0]; v1opts.limit = opts.argi[0];
v1opts.remote = string_view v1opts.remote = string_view
{ {
request.origin, strlcpy{request.origin, origin} strlcpy{request.origin, origin}
}; };
return m::v1::backfill return m::v1::backfill
@ -187,7 +187,7 @@ ircd::m::feds::event(const opts &opts,
v1opts.dynamic = true; v1opts.dynamic = true;
v1opts.remote = string_view v1opts.remote = string_view
{ {
request.origin, strlcpy{request.origin, origin} strlcpy{request.origin, origin}
}; };
return m::v1::event return m::v1::event