From 12cefbcc20c8a4c7a1ae2871cb85a3fb050c4c19 Mon Sep 17 00:00:00 2001 From: Yoshinobu Inoue Date: Tue, 8 Feb 2000 05:12:45 +0000 Subject: [PATCH] Change IPv6 address scope delimeter from '@' to '%' as recent KAME change. '@' conflicts with existing notations such as user@host, so '%' is better. Approved by: jkh Obtained from: KAME project --- include/netdb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/netdb.h b/include/netdb.h index 4206c731dccf..7d43899ae6d0 100644 --- a/include/netdb.h +++ b/include/netdb.h @@ -190,7 +190,7 @@ struct addrinfo { /* * Scope delimit character */ -#define SCOPE_DELIMITER '@' +#define SCOPE_DELIMITER '%' __BEGIN_DECLS void endhostent __P((void));