Changeset 2044 in ProjectBuilder


Ignore:
Timestamp:
Feb 19, 2016, 2:50:53 AM (8 years ago)
Author:
Bruno Cornec
Message:
  • Fix ecdsa test by keyscan and not dsa
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 0.13.2/pb/bin/pb

    r2043 r2044  
    44864486# Check whether ecdsa is accepted by the remote host
    44874487my $ecdsa = 0;
    4488 open(SCAN,"ssh-keyscan -p $nport -t dsa $target|") || pb_log(0,"Unable to check ECDSA support for $target");
     4488open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target|") || pb_log(0,"Unable to check ECDSA support for $target");
    44894489while(<SCAN>) {
    44904490    $ecdsa = 1 if ($_ =~ /ecdsa-/);
Note: See TracChangeset for help on using the changeset viewer.