mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Minor cosmetics
This commit is contained in:
parent
74294ae105
commit
03da24b249
|
@ -509,7 +509,7 @@ class Databases:
|
|||
if len(colList) > 0:
|
||||
if colTuple:
|
||||
_, colCondParam = colTuple
|
||||
infoMsg += "like '%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
infoMsg += "LIKE '%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
else:
|
||||
colCondParam = "='%s'"
|
||||
infoMsg += "'%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
|
@ -604,7 +604,7 @@ class Databases:
|
|||
if len(colList) > 0:
|
||||
if colTuple:
|
||||
_, colCondParam = colTuple
|
||||
infoMsg += "like '%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
infoMsg += "LIKE '%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
else:
|
||||
colCondParam = "='%s'"
|
||||
infoMsg += "'%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in sorted(colList))
|
||||
|
|
Loading…
Reference in New Issue
Block a user