2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-21 19:22:05 +00:00

Fixed error message typo in tabutils.pm

This commit is contained in:
besawn 2022-05-11 14:14:29 -04:00
parent e2ebc115ea
commit faa721ddce

View File

@ -261,7 +261,7 @@ sub gettab
foreach my $tabn (keys %tabhash) {
foreach my $kcheck (keys %keyhash) {
unless (grep /^$kcheck$/, @{ $xCAT::Schema::tabspec{$tabn}->{cols} }) {
$callback->({ error => ["Unkown key $kcheck to $tabn"], errorcode => [1] });
$callback->({ error => ["Unknown key $kcheck to $tabn"], errorcode => [1] });
return;
}
}