summaryrefslogtreecommitdiff
path: root/tools/indexcap.py
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-03-21 22:53:58 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-03-21 21:56:22 +0000
commit82f11d420419b74e3a666416993cb776d00ed279 (patch)
tree683207282e7163299f359bdc4c2959472061efd1 /tools/indexcap.py
parent97ba9406e73646c1653189a5980559abc8b207fa (diff)
downloadwireshark-82f11d420419b74e3a666416993cb776d00ed279.tar.gz
Fix indexcap tools
Change-Id: Ib77af11975873106b7db7ac1bcd12f4a0800b59e TypeError: extract_protos_from_file() takes exactly 6 arguments (7 given) Reviewed-on: https://code.wireshark.org/review/779 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'tools/indexcap.py')
-rwxr-xr-xtools/indexcap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/indexcap.py b/tools/indexcap.py
index 6c0c039a90..0c363bf343 100755
--- a/tools/indexcap.py
+++ b/tools/indexcap.py
@@ -284,7 +284,7 @@ def main():
elif options.dissect_files:
dissect_files(tshark_bin, tmpdir, options.num_procs, options.max_files, cap_files)
else:
- extract_protos_from_file(tshark_bin, tmpdir, options.num_procs, options.max_files, cap_files, cap_hash, index_file_name)
+ extract_protos_from_file(tshark_bin, options.num_procs, options.max_files, cap_files, cap_hash, index_file_name)
os.rmdir(tmpdir)
if __name__ == "__main__":