debian/0000755000000000000000000000000011401504727007167 5ustar debian/patches/0000755000000000000000000000000011401502265010611 5ustar debian/patches/series0000644000000000000000000000013511401502265012025 0ustar 02_manpage.diff 03_makefile_update.diff 04_fix_compiler_warnings.diff 05_fix_off_by_one.diff debian/patches/02_manpage.diff0000644000000000000000000001735711401502265013371 0ustar diff -urNad nbtscan-1.5.1~/nbtscan.sgml nbtscan-1.5.1/nbtscan.sgml --- nbtscan-1.5.1~/nbtscan.sgml 1970-01-01 01:00:00.000000000 +0100 +++ nbtscan-1.5.1/nbtscan.sgml 2008-05-08 14:14:50.000000000 +0200 @@ -0,0 +1,230 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + --> + + + Ryszard"> + Lach"> + + october 12, 2001"> + + 1"> + rla@debian.org"> + + NBTSCAN"> + + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2001 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + program for scanning networks for NetBIOS name information + + + + &dhpackage; + + + + + + + + + + + + filename | scan_range + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; command. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + + &dhpackage; +is a program for scanning IP networks for NetBIOS name +information. It sends NetBIOS status query to each address in +supplied range and lists received information in human +readable form. For each responded host it lists IP address, +NetBIOS computer name, logged-in user name and MAC address +(such as Ethernet). + + + + + OPTIONS + + A summary of options is included below. + + + + + + + Verbose output. Print all names received from each host. + + + + + + + Dump packets. Print whole packet contents. Cannot be used with -v, -s or -h options. + + + + + + + Format output in /etc/hosts format. + + + + + + + Format output in lmhosts format. Cannot be used with -v, -s or + -h options. + + + + timeout + + + Wait timeout seconds for response. Default 1. + + + + bandwidth + + + Output throttling. Slow down output so that it uses no more that + bandwidth bps. Useful on slow links, so that ougoing queries don't get + dropped. + + + + + + + Use local port 137 for scans. Win95 boxes respond to this only. You need to be root to use this option. + + + + + + + Suppress banners and error messages. + + + + separator + + + Script-friendly output. Don't print column and record headers, separate fields with separator. + + + + + + + Print human-readble names for services. Can only be used with -v option. + + + + retransmits + + + Number of retransmits. Default 0. + + + + filename + + + Take IP addresses to scan from file "filename" + + + + scan_range + + + What to scan. Can either be single IP like 192.168.1.1 or + range of addresses in one of two forms: xxx.xxx.xxx.xxx/xx or + xxx.xxx.xxx.xxx-xxx. + + + + + + BUGS + + Report bugs to alla@sovlink.ru (that's autor of nbtscan). I cannot + promise to do anything but I might well want fix it. Remember: no + warranty. At least it's worth what you payed for it. + + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others) and is based on + &dhpackage; author's README file. Permission is granted to copy, + distribute and/or modify this document under the terms of the + GNU Free Documentation License, Version 1.1 or any + later version published by the Free Software Foundation. + + +
+ + debian/patches/03_makefile_update.diff0000644000000000000000000000166211401502265015071 0ustar diff -urNad nbtscan-1.5.1~/Makefile.in nbtscan-1.5.1/Makefile.in --- nbtscan-1.5.1~/Makefile.in 2008-05-08 14:48:08.000000000 +0200 +++ nbtscan-1.5.1/Makefile.in 2008-05-08 14:49:15.000000000 +0200 @@ -9,12 +9,17 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ BINDIR = @bindir@ +MANDIR = @prefix@/share/man nbtscan: $(OBJECTS) $(CC) $(CFLAGS) -o nbtscan $(OBJECTS) $(LIBS) -install: - $(INSTALL) $(TARGET) $(BINDIR)/$(TARGET) +nbtscan.1: nbtscan.sgml + docbook-to-man nbtscan.sgml > nbtscan.1 + +install: nbtscan nbtscan.1 + $(INSTALL) $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) + $(INSTALL) nbtscan.1 $(DESTDIR)$(MANDIR)/man1/nbtscan.1 nbtscan.o: nbtscan.c statusq.h range.h list.h $(CC) $(CFLAGS) $(DEFS) -c nbtscan.c @@ -29,7 +34,7 @@ $(CC) $(CFLAGS) $(DEFS) -c list.c clean: - -rm $(OBJECTS) nbtscan + -rm $(OBJECTS) nbtscan nbtscan.1 distclean: clean -rm config.cache config.log config.status Makefile debian/patches/04_fix_compiler_warnings.diff0000644000000000000000000002631611401502265016346 0ustar diff -urNad nbtscan-1.5.1~/list.c nbtscan-1.5.1/list.c --- nbtscan-1.5.1~/list.c 2008-05-08 14:10:54.000000000 +0200 +++ nbtscan-1.5.1/list.c 2008-05-08 14:12:29.000000000 +0200 @@ -49,7 +49,7 @@ if(item1==NULL) return 1; if(item1->content == item2->content) return 0; if(item1->content > item2->content) return 1; - if(item1->content < item2->content) return -1; + return -1; }; int insert(struct list* lst, unsigned long content) { @@ -95,11 +95,11 @@ free(item); return ERROR; }; + return 0; }; int in_list(struct list* lst, unsigned long content) { struct list_item *temp_item, *item; - int cmp; item = new_list_item(content); if(lst->head==NULL) return 0; diff -urNad nbtscan-1.5.1~/nbtscan.c nbtscan-1.5.1/nbtscan.c --- nbtscan-1.5.1~/nbtscan.c 2008-05-08 14:10:54.000000000 +0200 +++ nbtscan-1.5.1/nbtscan.c 2008-05-08 14:12:29.000000000 +0200 @@ -5,6 +5,8 @@ #include #include #include +#include +#include #if HAVE_STDINT_H #include #endif @@ -16,7 +18,12 @@ int quiet=0; -print_banner() { +char* getnbservicename(my_uint8_t service, int unique, char* name); +struct nb_host_info* parse_response(char* buff, int buffsize); +int in_list(struct list* lst, unsigned long content); +void send_query(int sock, struct in_addr dest_addr, my_uint32_t rtt_base); + +void print_banner(void) { printf("\nNBTscan version 1.5.1. Copyright (C) 1999-2003 Alla Bezroutchko.\n"); printf("This is a free software and it comes with absolutely no warranty.\n"); printf("You can use, distribute and modify it under terms of GNU GPL.\n\n"); @@ -77,13 +84,13 @@ return 0; }; -int print_header() { +void print_header(void) { printf("%-17s%-17s%-10s%-17s%-17s\n", "IP address", "NetBIOS Name", "Server", "User", "MAC address"); printf("------------------------------------------------------------------------------\n"); }; -int d_print_hostinfo(struct in_addr addr, const struct nb_host_info* hostinfo) { +void d_print_hostinfo(struct in_addr addr, const struct nb_host_info* hostinfo) { int i; unsigned char service; /* 16th byte of NetBIOS name */ char name[16]; @@ -117,7 +124,7 @@ }; if(hostinfo->footer) { - printf("Adapter address: %02x-%02x-%02x-%02x-%02x-%02x\n", + printf("Adapter address: %02x:%02x:%02x:%02x:%02x:%02x\n", hostinfo->footer->adapter_address[0], hostinfo->footer->adapter_address[1], hostinfo->footer->adapter_address[2], hostinfo->footer->adapter_address[3], hostinfo->footer->adapter_address[4], hostinfo->footer->adapter_address[5]); @@ -150,7 +157,6 @@ int i, unique; my_uint8_t service; /* 16th byte of NetBIOS name */ char name[16]; - char* sname; if(!sf) { printf("\nNetBIOS Name Table for Host %s:\n\n", inet_ntoa(addr)); @@ -189,7 +195,7 @@ if(hostinfo->footer) { if(sf) printf("%s%sMAC%s", inet_ntoa(addr), sf, sf); else printf("\nAdapter address: "); - printf("%02x-%02x-%02x-%02x-%02x-%02x\n", + printf("%02x:%02x:%02x:%02x:%02x:%02x\n", hostinfo->footer->adapter_address[0], hostinfo->footer->adapter_address[1], hostinfo->footer->adapter_address[2], hostinfo->footer->adapter_address[3], hostinfo->footer->adapter_address[4], hostinfo->footer->adapter_address[5]); @@ -238,7 +244,7 @@ printf("%-17s", user_name); }; if(hostinfo->footer) { - printf("%02x-%02x-%02x-%02x-%02x-%02x\n", + printf("%02x:%02x:%02x:%02x:%02x:%02x\n", hostinfo->footer->adapter_address[0], hostinfo->footer->adapter_address[1], hostinfo->footer->adapter_address[2], hostinfo->footer->adapter_address[3], hostinfo->footer->adapter_address[4], hostinfo->footer->adapter_address[5]); @@ -251,11 +257,10 @@ /* Print hostinfo in /etc/hosts or lmhosts format */ /* If l is true adds #PRE to each line of output (for lmhosts) */ -int l_print_hostinfo(struct in_addr addr, struct nb_host_info* hostinfo, int l) { +void l_print_hostinfo(struct in_addr addr, struct nb_host_info* hostinfo, int l) { int i; unsigned char service; /* 16th byte of NetBIOS name */ char comp_name[16]; - int is_server=0; int unique; int first_name=1; @@ -299,7 +304,7 @@ struct nb_host_info* hostinfo; fd_set* fdsr; fd_set* fdsw; - int sel, size; + int size; struct list* scanned; my_uint32_t rtt_base; /* Base time (seconds) for round trip time calculations */ float rtt; /* most recent measured RTT, seconds */ @@ -386,27 +391,27 @@ if(dump && lmhosts) { printf("Cannot be used with both dump (-d) and lmhosts (-l) options.\n"); - usage; + usage(); }; if(dump && etc_hosts) { printf("Cannot be used with both dump (-d) and /etc/hosts (-e) options.\n"); - usage; + usage(); }; if(verbose && lmhosts){ printf("Cannot be used with both verbose (-v) and lmhosts (-l) options.\n"); - usage; + usage(); }; if(verbose && etc_hosts){ printf("Cannot be used with both verbose (-v) and /etc/hosts (-e) options.\n"); - usage; + usage(); }; if(lmhosts && etc_hosts){ printf("Cannot be used with both lmhosts (-l) and /etc/hosts (-e) options.\n"); - usage; + usage(); }; @@ -476,8 +481,8 @@ FD_SET(sock, fdsw); /* timeout is in milliseconds */ - select_timeout.tv_sec = timeout / 1000; - select_timeout.tv_usec = (timeout % 1000) * 1000; /* Microseconds */ + select_timeout.tv_sec = 60; /* Default 1 min to survive ARP timeouts */ + select_timeout.tv_usec = 0; addr_size = sizeof(struct sockaddr_in); diff -urNad nbtscan-1.5.1~/range.c nbtscan-1.5.1/range.c --- nbtscan-1.5.1~/range.c 2008-05-08 14:10:54.000000000 +0200 +++ nbtscan-1.5.1/range.c 2008-05-08 14:12:29.000000000 +0200 @@ -35,14 +35,14 @@ Returns 1 on success, 0 on failure */ int is_range1(char* string, struct ip_range* range) { char* separator; - unsigned long mask; + unsigned int mask; char* ip; if((ip = (char *)malloc(strlen(string)+1))==NULL) err_die("Malloc failed", quiet); if (strlen(string)>19) return 0; - if(separator=(char*)strchr(string,'/')) { + if((separator=(char*)strchr(string,'/'))) { separator++; mask=atoi(separator); if(mask<=0 || mask>32) return 0; @@ -98,7 +98,7 @@ err_die("Malloc failed", quiet); strcpy(ip,string); - if(separator = (char*)strchr(ip,'-')) { + if((separator = (char*)strchr(ip,'-'))) { *separator=0; separator++; last_octet = atoi(separator); @@ -124,7 +124,7 @@ return 0; }; -int print_range(const struct ip_range* range) { +void print_range(const struct ip_range* range) { struct in_addr *addr; if((addr = (struct in_addr*)malloc(sizeof(struct in_addr)))==NULL) diff -urNad nbtscan-1.5.1~/range.h nbtscan-1.5.1/range.h --- nbtscan-1.5.1~/range.h 2008-05-08 14:10:54.000000000 +0200 +++ nbtscan-1.5.1/range.h 2008-05-08 14:12:29.000000000 +0200 @@ -36,6 +36,6 @@ Returns 1 on success, 0 on failure */ int is_range2(char* string, struct ip_range* range); -int print_range(const struct ip_range* range); +void print_range(const struct ip_range* range); #endif /* RANGE_H */ diff -urNad nbtscan-1.5.1~/statusq.c nbtscan-1.5.1/statusq.c --- nbtscan-1.5.1~/statusq.c 2008-05-08 14:10:54.000000000 +0200 +++ nbtscan-1.5.1/statusq.c 2008-05-08 14:12:29.000000000 +0200 @@ -1,5 +1,5 @@ /* This file contains a portion of code from Samba package, * -/* which contains the following license: * +/ which contains the following license: * / Unix SMB/Netbios implementation Version 1.9 @@ -31,6 +31,7 @@ #include #include #include +#include #include "errors.h" extern int quiet; @@ -89,7 +90,7 @@ /* end of code from Samba */ -int send_query(int sock, struct in_addr dest_addr, my_uint32_t rtt_base) { +void send_query(int sock, struct in_addr dest_addr, my_uint32_t rtt_base) { struct nbname_request request; struct sockaddr_in dest_sockaddr; int status; @@ -119,7 +120,7 @@ (struct sockaddr *)&dest_sockaddr, sizeof(dest_sockaddr)); if(status==-1) { snprintf(errmsg, 80, "%s\tSendto failed", inet_ntoa(dest_addr)); - err_print(errmsg, quiet); return(-1); + err_print(errmsg, quiet); }; }; @@ -329,41 +330,41 @@ }; nb_service_t services[] = { -"__MSBROWSE__", 0x01, 0, "Master Browser", -"INet~Services", 0x1C, 0, "IIS", -"IS~", 0x00, 1, "IIS", -"", 0x00, 1, "Workstation Service", -"", 0x01, 1, "Messenger Service", -"", 0x03, 1, "Messenger Service", -"", 0x06, 1, "RAS Server Service", -"", 0x1F, 1, "NetDDE Service", -"", 0x20, 1, "File Server Service", -"", 0x21, 1, "RAS Client Service", -"", 0x22, 1, "Microsoft Exchange Interchange(MSMail Connector)", -"", 0x23, 1, "Microsoft Exchange Store", -"", 0x24, 1, "Microsoft Exchange Directory", -"", 0x30, 1, "Modem Sharing Server Service", -"", 0x31, 1, "Modem Sharing Client Service", -"", 0x43, 1, "SMS Clients Remote Control", -"", 0x44, 1, "SMS Administrators Remote Control Tool", -"", 0x45, 1, "SMS Clients Remote Chat", -"", 0x46, 1, "SMS Clients Remote Transfer", -"", 0x4C, 1, "DEC Pathworks TCPIP service on Windows NT", -"", 0x52, 1, "DEC Pathworks TCPIP service on Windows NT", -"", 0x87, 1, "Microsoft Exchange MTA", -"", 0x6A, 1, "Microsoft Exchange IMC", -"", 0xBE, 1, "Network Monitor Agent", -"", 0xBF, 1, "Network Monitor Application", -"", 0x03, 1, "Messenger Service", -"", 0x00, 0, "Domain Name", -"", 0x1B, 1, "Domain Master Browser", -"", 0x1C, 0, "Domain Controllers", -"", 0x1D, 1, "Master Browser", -"", 0x1E, 0, "Browser Service Elections", -"", 0x2B, 1, "Lotus Notes Server Service", -"IRISMULTICAST", 0x2F, 0, "Lotus Notes", -"IRISNAMESERVER", 0x33, 0, "Lotus Notes", -"Forte_$ND800ZA", 0x20, 1, "DCA IrmaLan Gateway Server Service" +{"__MSBROWSE__", 0x01, 0, "Master Browser"}, +{"INet~Services", 0x1C, 0, "IIS"}, +{"IS~", 0x00, 1, "IIS"}, +{"", 0x00, 1, "Workstation Service"}, +{"", 0x01, 1, "Messenger Service"}, +{"", 0x03, 1, "Messenger Service"}, +{"", 0x06, 1, "RAS Server Service"}, +{"", 0x1F, 1, "NetDDE Service"}, +{"", 0x20, 1, "File Server Service"}, +{"", 0x21, 1, "RAS Client Service"}, +{"", 0x22, 1, "Microsoft Exchange Interchange(MSMail Connector)"}, +{"", 0x23, 1, "Microsoft Exchange Store"}, +{"", 0x24, 1, "Microsoft Exchange Directory"}, +{"", 0x30, 1, "Modem Sharing Server Service"}, +{"", 0x31, 1, "Modem Sharing Client Service"}, +{"", 0x43, 1, "SMS Clients Remote Control"}, +{"", 0x44, 1, "SMS Administrators Remote Control Tool"}, +{"", 0x45, 1, "SMS Clients Remote Chat"}, +{"", 0x46, 1, "SMS Clients Remote Transfer"}, +{"", 0x4C, 1, "DEC Pathworks TCPIP service on Windows NT"}, +{"", 0x52, 1, "DEC Pathworks TCPIP service on Windows NT"}, +{"", 0x87, 1, "Microsoft Exchange MTA"}, +{"", 0x6A, 1, "Microsoft Exchange IMC"}, +{"", 0xBE, 1, "Network Monitor Agent"}, +{"", 0xBF, 1, "Network Monitor Application"}, +{"", 0x03, 1, "Messenger Service"}, +{"", 0x00, 0, "Domain Name"}, +{"", 0x1B, 1, "Domain Master Browser"}, +{"", 0x1C, 0, "Domain Controllers"}, +{"", 0x1D, 1, "Master Browser"}, +{"", 0x1E, 0, "Browser Service Elections"}, +{"", 0x2B, 1, "Lotus Notes Server Service"}, +{"IRISMULTICAST", 0x2F, 0, "Lotus Notes"}, +{"IRISNAMESERVER", 0x33, 0, "Lotus Notes"}, +{"Forte_$ND800ZA", 0x20, 1, "DCA IrmaLan Gateway Server Service"} }; char* getnbservicename(my_uint8_t service, int unique, char* name) { debian/patches/05_fix_off_by_one.diff0000644000000000000000000000156311401502265014727 0ustar diff -urNad nbtscan-1.5.1~/nbtscan.c nbtscan-1.5.1/nbtscan.c --- nbtscan-1.5.1~/nbtscan.c 2003-06-06 14:14:00.000000000 +0200 +++ nbtscan-1.5.1/nbtscan.c 2008-05-09 14:38:59.000000000 +0200 @@ -111,7 +111,7 @@ for(i=0; i< hostinfo->header->number_of_names; i++) { service = hostinfo->names[i].ascii_name[15]; strncpy(name, hostinfo->names[i].ascii_name, 15); - name[16]=0; + name[15]=0; printf("%-17s Service: 0x%02x Flags: 0x%04x\n", name, service, hostinfo->names[i].rr_flags); } }; @@ -164,7 +164,7 @@ for(i=0; i< hostinfo->header->number_of_names; i++) { service = hostinfo->names[i].ascii_name[15]; strncpy(name, hostinfo->names[i].ascii_name, 15); - name[16]=0; + name[15]=0; unique = !(hostinfo->names[i].rr_flags & 0x0080); if(sf) { printf("%s%s%s%s", inet_ntoa(addr), sf, name, sf); debian/dirs0000644000000000000000000000003311401502265010042 0ustar usr/bin usr/share/man/man1 debian/clean0000644000000000000000000000011411401502265010163 0ustar config.guess config.log config.status config.sub configure configure.in.old debian/docs0000644000000000000000000000000711401502265010032 0ustar README debian/control0000644000000000000000000000153311401502265010567 0ustar Source: nbtscan Section: net Priority: optional Maintainer: Jochen Friedrich Build-Depends: docbook-to-man, debhelper (>= 7.0.50~), autotools-dev, autoconf Standards-Version: 3.8.4 Homepage: http://www.inetcat.net/software/nbtscan.html Vcs-Git: git://git.debian.org/users/jochen/pkg-nbtscan.git Vcs-Browser: http://git.debian.org/?p=users/jochen/pkg-nbtscan.git Package: nbtscan Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: A program for scanning networks for NetBIOS name information NBTscan is a program for scanning IP networks for NetBIOS name information. It sends NetBIOS status query to each address in supplied range and lists received information in human readable form. For each responded host it lists IP address, NetBIOS computer name, logged-in user name and MAC address (such as Ethernet). debian/rules0000755000000000000000000000030511401502265010240 0ustar #!/usr/bin/make -f %: dh $@ .PHONY: override_dh_auto_configure override_dh_auto_configure: ln -s /usr/share/misc/config.guess . ln -s /usr/share/misc/config.sub . autoconf dh_auto_configure debian/source/0000755000000000000000000000000011401502265010462 5ustar debian/source/format0000644000000000000000000000001411401502265011670 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000011511401502265010210 0ustar version=3 http://www.inetcat.net/software/nbtscan.html nbtscan-(.*)\.tar\.gz debian/changelog0000644000000000000000000000724011401502265011037 0ustar nbtscan (1.5.1-6) unstable; urgency=low * Switch to dpkg-source 3.0 (quilt) format * Bump Standards version to 3.8.4 -- Jochen Friedrich Wed, 02 Jun 2010 18:18:58 +0200 nbtscan (1.5.1-5) unstable; urgency=low * Change patch system to quilt and add README.source. * Change upstream location in copyright (Closes: #550988) * Fix license statement in copyright * Add homepage and GIT repository to control * Add dependency to autoconf and remove configure patch * Change compat from 4 to 7 * Bump standards version to 3.8.3. -- Jochen Friedrich Thu, 15 Oct 2009 17:27:05 +0200 nbtscan (1.5.1-4) unstable; urgency=low * Fix off-by-one error (Closes: #418655) Thanks to Walter Doekes for the patch. -- Jochen Friedrich Fri, 09 May 2008 14:40:12 +0200 nbtscan (1.5.1-3) unstable; urgency=low * Bump standards version to 3.7.3. * Convert from cdbs to debhelper v7 including a port of last NMU. * Fix watch file, now that the directory is no longer open. (Closes: #449819) -- Jochen Friedrich Thu, 08 May 2008 13:46:27 +0200 nbtscan (1.5.1-2.1) unstable; urgency=low * Non-maintainer upload. * Fix FTBFS with configure not run by cdbs (Closes: #375561) - Remove config.log and config.status * Bump standards version -- Julien Danjou Tue, 4 Jul 2006 13:51:39 +0200 nbtscan (1.5.1-2) unstable; urgency=low * Removed extra debian/rules.c preventing some autobuilders to succeed. -- Jochen Friedrich Thu, 26 Feb 2004 07:48:57 +0100 nbtscan (1.5.1-1) unstable; urgency=low * New upstream release o Fixed segmentation fault when using -f option (noticed by Brian Lovrin) o Fixed printing ugliness (noticed by Darren Critchley) o Closes: #176247, #147671 * Fixed debian/copyright to comply to Debian standard * New maintainer (Closes: #234616) * Bumped policy version to 3.6.1 * Converted to use cdbs * Fixed output of MAC addresses (Closes: #206670) * Fixed mask handling on 64bit platforms * Fixed timeout behaviour (Closes: #189334) -- Jochen Friedrich Wed, 25 Feb 2004 19:55:11 +0100 nbtscan (1.5-1) unstable; urgency=low * New upstream release. Closes: #166401 -- Ryszard Lach Wed, 8 Jan 2003 21:48:35 +0100 nbtscan (1.0.3-3) unstable; urgency=low * Applied patch from Thomas Poindessous. Closes: #142518. -- Ryszard Lach Tue, 10 Sep 2002 00:07:44 +0200 nbtscan (1.0.3-2) unstable; urgency=low * Updated config.sub and config.guess. Closes: #134268, #134247. -- Ryszard Lach Mon, 18 Feb 2002 00:15:00 +0100 nbtscan (1.0.3-1) unstable; urgency=low * New upstream release. -- Ryszard Lach Thu, 14 Feb 2002 21:27:09 +0100 nbtscan (1.0.2.1-2) unstable; urgency=low * Fixed building script (manpage generation). -- Ryszard Lach Fri, 4 Jan 2002 13:58:00 +0100 nbtscan (1.0.2.1-1) unstable; urgency=high * Fixed broken building scripts. (Closes: Bug#123649, Bug#123664) * Fixed COPYING file. -- Ryszard Lach Thu, 13 Dec 2001 20:54:34 +0100 nbtscan (1.0.2-3) unstable; urgency=low * Fixed bogus returned code. (Closes: Bug#120857) -- Ryszard Lach Tue, 11 Dec 2001 15:32:03 +0100 nbtscan (1.0.2-2) unstable; urgency=low * Added missing docbook-to-man to Build-Depends. -- Ryszard Lach Mon, 22 Oct 2001 20:35:25 +0200 nbtscan (1.0.2-1) unstable; urgency=low * Initial Release. (Closes: Bug#94735) -- Ryszard Lach Fri, 12 Oct 2001 14:51:06 +0200 Local variables: mode: debian-changelog End: debian/copyright0000644000000000000000000000221411401502265011114 0ustar This package was debianized by Ryszard Lach on Fri, 12 Oct 2001 14:51:06 +0200. It is now maintained by Jochen Friedrich on Wed, 25 Feb 2004 19:57:12 +0200. It was downloaded from http://www.inetcat.net/software/nbtscan.html. Upstream Author: Alla Bezroutchko NBTscan version 1.5.1 Copyright (C) 1999-2003 Alla Bezroutchko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (in a file called COPYING); if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. The GNU GPL may be viewed on Debian systems in /usr/share/common-licenses/GPL debian/compat0000644000000000000000000000000211401502265010360 0ustar 7 debian/source.lintian-overrides0000644000000000000000000000025011401502265014037 0ustar # These are handled in the clean target: nbtscan source: configure-generated-file-in-source config.log nbtscan source: configure-generated-file-in-source config.status