mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 17:06:32 -04:00
27 lines
717 B
C
27 lines
717 B
C
--- tools/scan6.c.orig 2015-04-05 14:03:21 UTC
|
|
+++ tools/scan6.c
|
|
@@ -251,8 +251,8 @@ uint16_t service_ports_dec[]={21, 22, 23, 25, 49, 5
|
|
|
|
|
|
/* IPv6 Address Resolution */
|
|
-sigjmp_buf env;
|
|
-unsigned int canjump;
|
|
+extern sigjmp_buf env;
|
|
+extern unsigned int canjump;
|
|
|
|
int main(int argc, char **argv){
|
|
extern char *optarg;
|
|
@@ -1504,9 +1504,11 @@ int main(int argc, char **argv){
|
|
if(!pps_f && !bps_f)
|
|
pktinterval= 1000;
|
|
|
|
-
|
|
+#ifndef IPV6TOOLKITCONF
|
|
+#define IPV6TOOLKITCONF "/etc/ipv6toolkit.conf"
|
|
+#endif
|
|
if(!configfile_f){
|
|
- strncpy(configfile, "/etc/ipv6toolkit.conf", MAX_FILENAME_SIZE);
|
|
+ strncpy(configfile, IPV6TOOLKITCONF, MAX_FILENAME_SIZE);
|
|
}
|
|
|
|
if(tgt_vendor_f || portscan_f){
|