Commit 8b9df85d authored by Max Kellermann's avatar Max Kellermann

neighbor/smbclient: remove unused attribute "alive"

parent 38d0f02e
......@@ -39,11 +39,10 @@ class SmbclientNeighborExplorer final : public NeighborExplorer {
struct Server {
std::string name, comment;
bool alive;
Server(std::string &&_name, std::string &&_comment)
:name(std::move(_name)), comment(std::move(_comment)),
alive(true) {}
:name(std::move(_name)),
comment(std::move(_comment)) {}
Server(const Server &) = delete;
gcc_pure
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment