Code

Ignore empty policy lists
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 10 Dec 2008 14:11:16 +0000 (14:11 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 10 Dec 2008 14:11:16 +0000 (14:11 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13246 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/client/events/krb5.pm

index 57d295a7f137633c4b7020c51c0f50a9efae0405..dd53ba064908c8ff93a4c08d7b933819d7c75338 100644 (file)
@@ -345,7 +345,7 @@ sub krb5_list_policies {
     if (not defined $kadm5){
       &add_content2xml_hash($out_hash, "error", "Cannot connect to kadmin server");
     } else {
-      my @policies= $kadm5->get_policies() or &add_content2xml_hash($out_hash, "error", Authen::Krb5::Admin::error);
+      my @policies= $kadm5->get_policies(); # or &add_content2xml_hash($out_hash, "error", Authen::Krb5::Admin::error);
       for my $policy (@policies) {
         &add_content2xml_hash($out_hash, "policy", $policy);
       }