diff --git a/xCAT-server/lib/xcat/plugins/tabutils.pm b/xCAT-server/lib/xcat/plugins/tabutils.pm
index fb6cf82f1..d4cf10caf 100644
--- a/xCAT-server/lib/xcat/plugins/tabutils.pm
+++ b/xCAT-server/lib/xcat/plugins/tabutils.pm
@@ -59,7 +59,7 @@ sub handled_commands
getAllEntries => "tabutils",
getNodesAttribs => "tabutils",
getTablesAllNodeAttribs => "tabutils",
- getTablesNodeAttribs => "tabutils",
+ getTablesNodesAttribs => "tabutils",
setNodesAttribs => "tabutils",
delEntries => "tabutils",
getAttribs => "tabutils",
@@ -163,9 +163,9 @@ sub process_request
{
return getTablesAllNodeAttribs($request,$callback);
}
- elsif ($command eq "getTablesNodeAttribs")
+ elsif ($command eq "getTablesNodesAttribs")
{
- return getTablesNodeAttribs($request,$callback);
+ return getTablesNodesAttribs($request,$callback);
}
elsif ($command eq "setNodesAttribs")
{
@@ -2482,14 +2482,14 @@ sub getTablesAllNodeAttribs
return;
}
-# getTablesNodeAttribs
+# getTablesNodesAttribs
# Read the nodes in the noderange from the input tables
# and get the input attributes
# or get ALL attributes, if the word ALL is used.
# If the ALL is input then read all the attributes
#
#PCM
-#getTablesAllNodeAttribs
+#getTablesNodesAttribs
#blade01-blade10
#
#nodelist
@@ -2521,7 +2521,7 @@ sub getTablesAllNodeAttribs
# .
#
#
-sub getTablesNodeAttribs
+sub getTablesNodesAttribs
{
my $request = shift;
my $cb = shift;