head	1.6;
access;
symbols
	RELEASE_5_1_0:1.5
	RELEASE_4_8_0:1.5
	RELEASE_5_0_0:1.5
	RELEASE_4_7_0:1.5
	RELEASE_4_6_2:1.5
	RELEASE_4_6_1:1.5
	RELEASE_4_6_0:1.5
	RELEASE_5_0_DP1:1.5
	RELEASE_4_5_0:1.5
	RELEASE_4_4_0:1.5
	RELEASE_4_3_0:1.5
	RELEASE_4_2_0:1.4
	RELEASE_4_1_1:1.4
	RELEASE_4_1_0:1.4
	RELEASE_3_5_0:1.4
	nmap_2_30_beta17:1.3
	nmap_2_30_beta18:1.4
	RELEASE_4_0_0:1.3
	RELEASE_3_4_0:1.3
	RELEASE_3_3_0:1.3
	RELEASE_2_2_8:1.1;
locks; strict;
comment	@# @;


1.6
date	2003.07.01.03.38.04;	author foxfair;	state dead;
branches;
next	1.5;

1.5
date	2001.03.17.01.06.24;	author obrien;	state Exp;
branches;
next	1.4;

1.4
date	2000.04.06.22.16.15;	author obrien;	state Exp;
branches;
next	1.3;

1.3
date	99.07.23.18.21.54;	author obrien;	state Exp;
branches;
next	1.2;

1.2
date	98.12.17.02.45.00;	author obrien;	state dead;
branches;
next	1.1;

1.1
date	98.11.29.23.02.39;	author asami;	state Exp;
branches;
next	;


desc
@@


1.6
log
@PR:		53933
Submitted by:	maintainer
Reviewed by:
Approved by:
Obtained from:
MFC after:
1. Upgrade Nmap to 3.30, which released at Jun 29, 2003. Major enchancement is
   OS fingerprints update. The fingerprint DB now contains almost 1000
   fingerprints.

   See ChangeLog at this link:

	http://lists.insecure.org/lists/nmap-hackers/2003/Apr-Jun/0016.html

2. Renamed the patch files to be more descriptive.
@
text
@--- nmapfe/Makefile.in.orig	Mon Jan  1 22:22:37 2001
+++ nmapfe/Makefile.in	Fri Mar 16 16:56:47 2001
@@@@ -75 +75 @@@@
-DEFS = @@DEFS@@ -DVERSION=\"$(VERSION)\" -DHAVE_CONFIG_H=1 -I$(srcdir) 
+DEFS = @@DEFS@@ -DVERSION=\"$(VERSION)\" -DHAVE_CONFIG_H=1 -I$(srcdir) -DNMAP_PATH=\"$(bindir)/\"
@@@@ -236 +236 @@@@
-%.o: %.c
+.c.o:
@@@@ -240 +240 @@@@
-%.lo: %.c
+.c.lo:
@


1.5
log
@Remove patch NOT approved by me (maintainer), that is in my way while
doing an upgrade.  This patch does not fix a bug, takes away the original
author's right to free speach, and we have no technical reason to patch.
@
text
@@


1.4
log
@Update to 2.30 Beta #18.

* Fixed a very important bug that occurred when SYN scanning localhost.
* Fixed "-vv" to mean "-v -v" as it did in previous versions.
@
text
@d1 6
a6 15
--- nmapfe/Makefile.in.orig	Thu Apr  6 01:51:39 2000
+++ nmapfe/Makefile.in	Thu Apr  6 14:53:11 2000
@@@@ -70,7 +70,7 @@@@
 PROGRAMS =  $(bin_PROGRAMS)
 
 
-DEFS = @@DEFS@@ -DVERSION=\"$(VERSION)\" -I. -I$(srcdir) 
+DEFS = @@DEFS@@ -DVERSION=\"$(VERSION)\" -DNMAP_PATH=\"$(bindir)/\" -I. -I$(srcdir) 
 CPPFLAGS = @@CPPFLAGS@@
 STATIC =
 LDFLAGS = @@LDFLAGS@@ $(STATIC)
@@@@ -231,11 +231,11 @@@@
 maintainer-clean-depend:
 	-rm -rf .deps
 
d9 1
a9 3
 	@@echo '$(COMPILE) -c $<'; \
 	$(COMPILE) -c $<
 
a11 3
 	@@echo '$(LTCOMPILE) -c $<'; \
 	$(LTCOMPILE) -c $<
 	@@-sed -e 's/^\([^:]*\)\.o:/\1.lo \1.o:/' \
@


1.3
log
@Hard code the path to nmap w/in nmapfe.  Thus it will work in the face of a
limited path.

Bug reported by:	Andre Albsmeier <andre.albsmeier@@mchp.siemens.de>
@
text
@d1 3
a3 3
--- nmapfe/Makefile.in.orig	Fri May  7 04:51:52 1999
+++ nmapfe/Makefile.in	Fri Jul 23 10:46:08 1999
@@@@ -71,7 +71,7 @@@@
d7 2
a8 2
-DEFS = @@DEFS@@ -I. -I$(srcdir) 
+DEFS = @@DEFS@@ -DNMAP_PATH=\"$(bindir)/\"  -I. -I$(srcdir) 
@


1.2
log
@Somehow this delete didn't propagate.
@
text
@d1 25
a25 20
--- tcpip.c.orig	Sun Nov 29 10:00:13 1998
+++ tcpip.c	Sun Nov 29 10:00:51 1998
@@@@ -563,7 +563,7 @@@@
 if (ifc.ifc_len == 0) 
   fatal("SIOCGIFCONF claims you have no network interfaces!\n");
 #if HAVE_SOCKADDR_SA_LEN
-  len = MAX(sizeof(struct sockaddr), ifr->ifr_addr.sa_len);
+  len = ifr->ifr_addr.sa_len;
 #else
   len = sizeof(SA);
 #endif
@@@@ -581,6 +581,7 @@@@
       dev[63] = '\0';
       return 1;
     }
+    len = ifr->ifr_addr.sa_len;
   }
   /* Shucks, we didn't find it ... */
   dev[0] = '\0';

@


1.1
log
@Fix the bug when the user specs the source address as the tun0/ppp0
link.

Submitted by:	jmb
@
text
@@

