Skip to content

Commit 51139a6

Browse files
committedJun 29, 2022
Upgrade libssh2 to 1.10.0
1 parent d969fd0 commit 51139a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+15598
-8834
lines changed
 

‎CHANGELOG

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#Nmap Changelog ($Id$); -*-text-*-
22

3+
o Upgrade libssh2 to 1.10.0.
4+
35
o [NSE][GH#2496] Fix newtargets support: since Nmap 7.92, scripts could not add
46
targets in script pre-scanning phase. [Daniel Miller]
57

‎libssh2/CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@ if(BUILD_TESTING)
9898
add_subdirectory(tests)
9999
endif()
100100

101+
option(LINT "Check style while building" OFF)
102+
if(LINT)
103+
add_custom_target(lint ALL
104+
./ci/checksrc.sh
105+
WORKING_DIRECTORY ${libssh2_SOURCE_DIR})
106+
add_dependencies(libssh2 lint)
107+
endif()
108+
101109
add_subdirectory(docs)
102110

103111
feature_summary(WHAT ALL)

0 commit comments

Comments
 (0)
Please sign in to comment.