1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-16 09:50:21 -04:00

Update src/libutil/url.cc

Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
Bryan Honof 2024-08-28 18:48:18 +02:00 committed by GitHub
parent c9f45677b5
commit 9b1cefe27e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,7 @@ std::map<std::string, std::string> decodeQuery(const std::string & query)
auto e = s.find('=');
if (e == std::string::npos) {
warn("invalid URI query '%s', did you forget an equals sign `=`?", s);
warn("dubious URI query '%s' is missing equal sign '%s'", s, "=");
continue;
}