[go: up one dir, main page]

Menu

[97a570]: / src / types.cc  Maximize  Restore  History

Download this file

18 lines (14 with data), 325 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#include "types.h"
//////////////////////////////////////////////////////////////////////////
//
// Passwd
//
//////////////////////////////////////////////////////////////////////////
void Passwd::clear() {
text = "";
nopasswd = true;
}
void Passwd::set_passwd(string passwd) {
nopasswd = false;
text = passwd;
}