From 961aa82b9ad891e9fe454b8c3485bc74211d0991 Mon Sep 17 00:00:00 2001 From: fferro Date: Wed, 17 Jul 2024 12:56:54 +0100 Subject: [PATCH] cleanup --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 2df6e5c..b112118 100644 --- a/config.go +++ b/config.go @@ -8,7 +8,7 @@ // the host name to match on ("example.com"), and the second argument is the key // you want to retrieve ("Port"). The keywords are case insensitive. // -// port := ssh_config.Get("myhost", "Port") +// port := ssh_config.Get("myhost", "Port") // // You can also manipulate an SSH config file and then print it or write it back // to disk. @@ -82,7 +82,7 @@ func userConfigFinder() string { // and it will return parse errors (if any) instead of swallowing them. var DefaultUserSettings = &UserSettings{ IgnoreErrors: false, - IgnoreMatchDirective: true, + IgnoreMatchDirective: false, systemConfigFinder: systemConfigFinder, userConfigFinder: userConfigFinder, }