diff options
author | Damien Miller <djm@mindrot.org> | 2013-04-23 15:18:28 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-04-23 15:18:28 +1000 |
commit | 508b6c3d3b95c8ec078fd4801368597ab29b2db9 (patch) | |
tree | 886e7dc4908bbe4c53626b072c2f5348e8271668 /ssh.c | |
parent | 91a55f28f35431f9000b95815c343b5a18fda712 (diff) |
- djm@cvs.openbsd.org 2013/03/08 06:32:58
[ssh.c]
allow "ssh -f none ..." ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh.c,v 1.373 2013/02/22 22:09:01 djm Exp $ */ | 1 | /* $OpenBSD: ssh.c,v 1.374 2013/03/08 06:32:58 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -674,7 +674,8 @@ main(int ac, char **av) | |||
674 | * file if the user specifies a config file on the command line. | 674 | * file if the user specifies a config file on the command line. |
675 | */ | 675 | */ |
676 | if (config != NULL) { | 676 | if (config != NULL) { |
677 | if (!read_config_file(config, host, &options, SSHCONF_USERCONF)) | 677 | if (strcasecmp(config, "none") != 0 && |
678 | !read_config_file(config, host, &options, SSHCONF_USERCONF)) | ||
678 | fatal("Can't open user config file %.100s: " | 679 | fatal("Can't open user config file %.100s: " |
679 | "%.100s", config, strerror(errno)); | 680 | "%.100s", config, strerror(errno)); |
680 | } else { | 681 | } else { |