From faa721ddce4c5cdac5b041ce9421811a9cea8234 Mon Sep 17 00:00:00 2001 From: besawn <38794505+besawn@users.noreply.github.com> Date: Wed, 11 May 2022 14:14:29 -0400 Subject: [PATCH] Fixed error message typo in tabutils.pm --- xCAT-server/lib/xcat/plugins/tabutils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/tabutils.pm b/xCAT-server/lib/xcat/plugins/tabutils.pm index 64f3933f8..2cfa931c8 100644 --- a/xCAT-server/lib/xcat/plugins/tabutils.pm +++ b/xCAT-server/lib/xcat/plugins/tabutils.pm @@ -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; } }