Skip to content

Commit

Permalink
Update NetRocks from far2l
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Dec 4, 2024
1 parent 271a90d commit 7e9689c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetRocks/src/Protocol/SplitLocationSpecification.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ bool SplitLocationSpecification(const char *specification, std::string &protocol
username.assign(proto_end, at - proto_end);
size_t up_div = username.find(':');
if (up_div!=std::string::npos) {
password = username.substr(up_div);
password = username.substr(up_div + 1);
username.resize(up_div);
}
++at;
Expand Down

0 comments on commit 7e9689c

Please sign in to comment.