password length limit for netspool
This commit is contained in:
parent
ccd02f74d6
commit
941a199f7d
@ -105,7 +105,7 @@ static int prot_get_next_file(s_filelist **dest, s_protinfo *pi)
|
|||||||
log("start netspool");
|
log("start netspool");
|
||||||
if(state.netspool.state == NS_NOTINIT) {
|
if(state.netspool.state == NS_NOTINIT) {
|
||||||
log("netspool connection");
|
log("netspool connection");
|
||||||
char password[9];
|
char password[100];
|
||||||
char address[300];
|
char address[300];
|
||||||
char *host = conf_string(cf_netspool_host);
|
char *host = conf_string(cf_netspool_host);
|
||||||
char *port = conf_string(cf_netspool_port);
|
char *port = conf_string(cf_netspool_port);
|
||||||
@ -117,7 +117,7 @@ static int prot_get_next_file(s_filelist **dest, s_protinfo *pi)
|
|||||||
state.node.addr.zone, state.node.addr.net,
|
state.node.addr.zone, state.node.addr.net,
|
||||||
state.node.addr.node, state.node.addr.point);
|
state.node.addr.node, state.node.addr.point);
|
||||||
if(state.protected) {
|
if(state.protected) {
|
||||||
session_get_password(state.node.addr, password, 8);
|
session_get_password(state.node.addr, password, 100);
|
||||||
} else {
|
} else {
|
||||||
password[0] = 0;
|
password[0] = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user