Imported Debian version 5.0.5

This commit is contained in:
Marco d'Itri 2010-05-23 03:17:45 +02:00
parent c4ba9f91d1
commit cdfdc7d88b
5 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* Program version */ /* Program version */
#define VERSION "5.0.4" #define VERSION "5.0.5"
/* Configurable features */ /* Configurable features */

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
whois (5.0.5) unstable; urgency=medium
* Added the .xn--p1ai (.рф, Russian Federation) TLD server.
(Closes: #581611)
* Updated the .ls TLD server. (Closes: #582077)
-- Marco d'Itri <md@linux.it> Sun, 23 May 2010 03:17:45 +0200
whois (5.0.4) unstable; urgency=high whois (5.0.4) unstable; urgency=high
* Added new IPv4 allocations. * Added new IPv4 allocations.

View File

@ -1,3 +1,4 @@
# http://www.iana.org/domains/root/db/
# NIC? means I have not been able to find the registry # NIC? means I have not been able to find the registry
.br.com whois.centralnic.net .br.com whois.centralnic.net
@ -188,7 +189,7 @@
.li whois.nic.li .li whois.nic.li
.lk whois.nic.lk .lk whois.nic.lk
.lr NONE # http://www.psg.com/dns/lr/ .lr NONE # http://www.psg.com/dns/lr/
.ls WEB http://www.co.ls/data/co.asp .ls WEB http://www.co.ls/co.asp
.lt whois.domreg.lt .lt whois.domreg.lt
.lu whois.dns.lu .lu whois.dns.lu
.lv whois.nic.lv .lv whois.nic.lv
@ -331,6 +332,7 @@
.xn--mgbaam7a8h whois.aeda.net.ae # United Arab Emirates .xn--mgbaam7a8h whois.aeda.net.ae # United Arab Emirates
.xn--mgberp4a5d4ar whois.nic.net.sa # Saudi Arabia .xn--mgberp4a5d4ar whois.nic.net.sa # Saudi Arabia
.xn--wgbh1c NONE # Egypt .xn--wgbh1c NONE # Egypt
.xn--p1ai whois.ripn.net # Russian Federation
-dom whois.networksolutions.com -dom whois.networksolutions.com
-org whois.networksolutions.com -org whois.networksolutions.com

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 1999-2009 by Marco d'Itri <md@linux.it>. * Copyright 1999-2010 by Marco d'Itri <md@linux.it>.
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -52,7 +52,12 @@
/* hack */ /* hack */
#define malloc(s) NOFAIL(malloc(s)) #define malloc(s) NOFAIL(malloc(s))
#define realloc(p, s) NOFAIL(realloc(p, s)) #define realloc(p, s) NOFAIL(realloc(p, s))
#ifdef strdup
#undef strdup
#define strdup(s) NOFAIL(__strdup(s))
#else
#define strdup(s) NOFAIL(strdup(s)) #define strdup(s) NOFAIL(strdup(s))
#endif
/* Global variables */ /* Global variables */
int sockfd, verb = 0; int sockfd, verb = 0;

View File

@ -1,6 +1,6 @@
Summary: Enhanced WHOIS client Summary: Enhanced WHOIS client
Name: whois Name: whois
Version: 5.0.4 Version: 5.0.5
Release: 1 Release: 1
License: GPL License: GPL
Vendor: Marco d'Itri <md@linux.it> Vendor: Marco d'Itri <md@linux.it>