the password column in account is for TELNET, not for minilogin.
You enter your username and random gibberish for your password at the login screen, it doesnt matter. If the IP listed under the username matches the one connected, it sends you through, password disregarded.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|