mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
Update src/libutil/url.cc
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
parent
c9f45677b5
commit
9b1cefe27e
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ std::map<std::string, std::string> decodeQuery(const std::string & query)
|
||||||
auto e = s.find('=');
|
auto e = s.find('=');
|
||||||
|
|
||||||
if (e == std::string::npos) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue