-Remove test IV

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5078 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-01-29 04:16:34 +00:00
parent 712c9edd0b
commit 3c164dd1cf

View File

@ -616,7 +616,7 @@ sub sendpayload {
push @msg,($newsize&0xff,$newsize>>8);
my @iv;
foreach (1..16) {
my $num = 0xff; #int(rand(255));
my $num = int(rand(255));
push @msg,$num;
push @iv, $num;
}