Skip to content

Commit

Permalink
Fix the wrong value of AUTHMETHOD_NONE.
Browse files Browse the repository at this point in the history
  • Loading branch information
NI committed Sep 11, 2019
1 parent c9f3860 commit 70aea54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/commands/ssh.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import * as history from "./history.js";
import * as strings from "./string.js";
import Exception from "./exception.js";

const AUTHMETHOD_NONE = 0x01;
const AUTHMETHOD_NONE = 0x00;
const AUTHMETHOD_PASSPHRASE = 0x01;
const AUTHMETHOD_PRIVATE_KEY = 0x02;

Expand Down

0 comments on commit 70aea54

Please sign in to comment.