restore behavior from the 1.4 branch... manager users created via users.conf should default to *all* permissions, not none

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90149 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2007-11-29 13:30:50 +00:00
parent 57a519e4b1
commit c13ed407db

View File

@@ -1049,6 +1049,10 @@ static int authenticate(struct mansession *s, const struct message *m)
ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_inet_ntoa(s->sin.sin_addr), user);
return -1;
}
if (!readperm)
readperm = -1;
if (!writeperm)
writeperm = -1;
}
}