Skip to content

Commit 154b1e8

Browse files
committed
Remove comments
1 parent cf10a0c commit 154b1e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/auxiliary/scanner/sap/sap_mgmt_con_getprocesslist.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def getprocesslist(rhost)
139139
saptbl << [ output[0], output[1], output[3], output[4], output[5] ]
140140
end
141141

142-
print_line(saptbl.to_s) # This needs to be print_line
142+
print_line(saptbl.to_s)
143143
return
144144
elsif fault
145145
print_error("#{rhost}:#{rport} [SAP] Error code: #{faultcode}")

modules/auxiliary/scanner/sap/sap_mgmt_con_listlogfiles.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def listfiles(rhost)
152152
saptbl << [ output[0], output[1], output[2] ]
153153
end
154154

155-
print_line(saptbl.to_s) # Needs to be print_line
155+
print_line(saptbl.to_s)
156156
return
157157

158158
elsif fault

modules/auxiliary/scanner/sap/sap_router_info_request.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def run_host(ip)
173173
end
174174
disconnect
175175
# TODO: This data should be saved somewhere. A note on the host would be nice.
176-
print_line(saptbl.to_s) # Should be print_line
176+
print_line(saptbl.to_s)
177177
end
178178
end
179179
end

0 commit comments

Comments
 (0)