Skip to content
Snippets Groups Projects
Commit 0e7b8d1c authored by Jon Robertson's avatar Jon Robertson
Browse files

Fixed deprecated autoload warning

Fixed a warning on the use of KRB5_KDB_DISALLOW_ALL_TIX in the
Heimdal::Kadm5::Client section, where it was being loaded from the parent
class.  No change to functionality, only specifying the specific class
it came from to remove the warning.
parent d683899f
No related branches found
No related tags found
No related merge requests found
......@@ -290,7 +290,7 @@ sub enablePrincipal
{
my $principal = $self->getPrincipal($name);
my $attrs = $principal->getAttributes;
$attrs &= (~KRB5_KDB_DISALLOW_ALL_TIX());
$attrs &= (~Heimdal::Kadm5::KRB5_KDB_DISALLOW_ALL_TIX());
$principal->setAttributes($attrs);
$self->modifyPrincipal($principal);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment