2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-07-27 14:51:10 +00:00

fix a typo that perl sentence: continue does not work in sles11.4

This commit is contained in:
WangXiaoPeng
2016-06-21 02:56:18 -04:00
parent afa26d2e86
commit 5ba0427b48

View File

@@ -1446,7 +1446,7 @@ sub add_or_delete_records {
my $reply = $resolver->send($update);
if ($reply) {
if ($reply->header->rcode eq 'NOTAUTH' ) {
continue;
next;
}
if ($reply->header->rcode ne 'NOERROR') {
xCAT::SvrUtils::sendmsg([1,"Failure encountered updating $zone, error was ".$reply->header->rcode.". See more details in system log."], $callback);
@@ -1467,7 +1467,7 @@ sub add_or_delete_records {
my $reply = $resolver->send($update);
if ($reply) {
if ($reply->header->rcode eq 'NOTAUTH' ) {
continue;
next;
}
if ($reply->header->rcode ne 'NOERROR') {
xCAT::SvrUtils::sendmsg([1,"Failure encountered updating $zone, error was ".$reply->header->rcode.". See more details in system log."], $callback);