Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/pdns-recursor/files: pdns-recursor-3.1.7.2-error-message.patch
Date: Fri, 08 Jan 2010 07:25:43
Message-Id: E1NT9E3-0007Y3-1E@stork.gentoo.org
1 swegener 10/01/08 07:25:39
2
3 Added: pdns-recursor-3.1.7.2-error-message.patch
4 Log:
5 Version bump, security bug #299942.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-dns/pdns-recursor/files/pdns-recursor-3.1.7.2-error-message.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/pdns-recursor/files/pdns-recursor-3.1.7.2-error-message.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/pdns-recursor/files/pdns-recursor-3.1.7.2-error-message.patch?rev=1.1&content-type=text/plain
13
14 Index: pdns-recursor-3.1.7.2-error-message.patch
15 ===================================================================
16 --- pdns-recursor-3.1.7.2/rec_channel.cc
17 +++ pdns-recursor-3.1.7.2/rec_channel.cc
18 @@ -100,7 +100,7 @@
19 strcpy(remote.sun_path,(path+"/"+fname).c_str());
20 if(::connect(d_fd, (sockaddr*)&remote, sizeof(remote)) < 0) {
21 unlink(d_local.sun_path);
22 - throw AhuException("Unable to connect to remote '"+path+fname+"': "+string(strerror(errno)));
23 + throw AhuException("Unable to connect to remote '"+path+"/"+fname+"': "+string(strerror(errno)));
24 }
25 }