summaryrefslogtreecommitdiff
path: root/methods/store.cc
diff options
context:
space:
mode:
authorнаб <nabijaczleweli@nabijaczleweli.xyz>2025-01-23 20:50:39 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2025-02-14 19:45:12 +0100
commit729a5c8f4fb8c841497d26170e1a47c41617ecd9 (patch)
tree3d9e97b68a2a9706ce7295e0b056a053449b39cc /methods/store.cc
parent384cfa1fe9dfd30b35d6f8b0ae87be643ab75d06 (diff)
string{=> _view} flNotDir(string{=> _view}). Configuration::{Cnd,}Set(Value: string{=> _view})
Diffstat (limited to 'methods/store.cc')
-rw-r--r--methods/store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/store.cc b/methods/store.cc
index bfd748e23..14fadabac 100644
--- a/methods/store.cc
+++ b/methods/store.cc
@@ -37,7 +37,7 @@ class StoreMethod final : public aptMethod
public:
- explicit StoreMethod(std::string &&pProg) : aptMethod(std::move(pProg),"1.2",SingleInstance | SendConfig | SendURIEncoded)
+ explicit StoreMethod(std::string pProg) : aptMethod(std::move(pProg),"1.2",SingleInstance | SendConfig | SendURIEncoded)
{
SeccompFlags = aptMethod::BASE;
if (Binary != "store")
@@ -144,5 +144,5 @@ bool StoreMethod::Fetch(FetchItem *Itm) /*{{{*/
int main(int, char *argv[])
{
- return StoreMethod(flNotDir(argv[0])).Run();
+ return StoreMethod(std::string{flNotDir(argv[0])}).Run();
}