Skip to content

Commit

Permalink
Fix lbat and lcat (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpt-romankarwacik authored Nov 26, 2024
1 parent 92a9f46 commit 7563c0a
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 @@ -495,7 +495,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 @@ -533,7 +533,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 7563c0a

Please sign in to comment.