Commit 6f89445a authored by Adrián López's avatar Adrián López Committed by 4ast

Typo writting BPF (#659)

parent 639498a2
...@@ -482,7 +482,7 @@ class BPF(object): ...@@ -482,7 +482,7 @@ class BPF(object):
if res < 0: if res < 0:
err_no = ct.get_errno() err_no = ct.get_errno()
if err_no == errno.EBADMSG: if err_no == errno.EBADMSG:
raise Exception("Internal error while attaching BFP to device,"+ raise Exception("Internal error while attaching BPF to device,"+
" try increasing the debug level!") " try increasing the debug level!")
else: else:
errstr = os.strerror(err_no) errstr = os.strerror(err_no)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment