mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-25 01:34:23 +01:00
removed timeout keyword which is not supported on linux build
This commit is contained in:
parent
6762f592c1
commit
4f299f22bf
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ class Connector(GenericConnector):
|
|||
self.checkFileDb()
|
||||
|
||||
try:
|
||||
self.connector = kinterbasdb.connect(host=self.hostname, database=self.db, user=self.user, password=self.password, timeout={'period': conf.timeout})
|
||||
self.connector = kinterbasdb.connect(host=self.hostname, database=self.db, user=self.user, password=self.password)
|
||||
except kinterbasdb.OperationalError, msg:
|
||||
raise sqlmapConnectionException, msg[1]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue