Skip to content

Commit ce63a36

Browse files
committed
Change to case insensitive domain comparison
1 parent 427ee7d commit ce63a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enum4linux-ng.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def valid_ticket(self, ticket_file):
463463
# At a later call of lsaquery it might turn out that the domain is different. In this case the
464464
# user will be informed via print_hint()
465465
def set_domain(self, domain):
466-
if self.domain and self.domain == domain:
466+
if self.domain and self.domain.lower() == domain.lower():
467467
return True
468468
if not self.domain:
469469
self.domain = domain

0 commit comments

Comments
 (0)