Commit 613ad72e authored by Marc Vef's avatar Marc Vef
Browse files

Fix: hosts argument delimiter only using , now

parent 6dfe4038
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -274,7 +274,8 @@ int main(int argc, const char* argv[]) {
            assert(hostname.size() != 0);
        }
        // split comma separated host string
        boost::tokenizer<> tok(hosts);
        boost::char_separator<char> sep(",");
        boost::tokenizer<boost::char_separator<char>> tok(hosts, sep);
        for (auto&& s : tok) {
            fuse_struct->hosts[i] = s;
            if (hostname == s) {