Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/SLE-12-SP5' into SLE-15-SP4
Browse files Browse the repository at this point in the history
  • Loading branch information
scabrero committed Sep 18, 2023
2 parents 721f72a + 7ae6774 commit 6049904
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions package/yast2-auth-client.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Sep 13 10:04:35 UTC 2023 - Samuel Cabrero <scabrero@suse.de>

- Skip whitespace-only lines parsing krb5.conf; (bsc#1215297);
- 4.4.5

-------------------------------------------------------------------
Wed Aug 31 07:27:37 UTC 2022 - Michal Filka <mfilka@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-auth-client.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-auth-client
Version: 4.4.4
Version: 4.4.5
Release: 0
Url: https://github.com/yast/yast-auth-client
Summary: YaST2 - Centralised System Authentication Configuration
Expand Down
5 changes: 5 additions & 0 deletions src/lib/auth/krbparse.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ def self.parse(krb_conf_text)
if comment_match
next
end
# Skip empty lines
empty_match = /^\s+$/.match(line)
if empty_match
next
end
# Remember include/includedir directives
include_match = /^(includedir|include|module)\s+(.+)$/.match(line)
if include_match
Expand Down

0 comments on commit 6049904

Please sign in to comment.