Skip to content

Commit

Permalink
Fix lbat and lcat
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpt-romankarwacik committed Nov 26, 2024
1 parent 14531a1 commit 774a7e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smbclientng/core/InteractiveShell.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def command_lbat(self, arguments, command):
# SMB share needed : No

# Parse wildcards
files_and_directories = resolve_remote_files(self.sessionsManager.current_session, arguments)
files_and_directories = resolve_local_files(arguments)

for path_to_file in files_and_directories:
# Read the file
Expand Down Expand Up @@ -527,7 +527,7 @@ def command_lcat(self, arguments, command):
# SMB share needed : No

# Parse wildcards
files_and_directories = resolve_remote_files(self.sessionsManager.current_session, arguments)
files_and_directories = resolve_local_files(arguments)

for path_to_file in files_and_directories:
# Read the file
Expand Down

0 comments on commit 774a7e3

Please sign in to comment.