diff options
author | Sven Wegener <swegener@gentoo.org> | 2009-08-03 19:34:12 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2009-08-03 19:34:12 +0000 |
commit | b52eafa441e7dbb11a4ff3d9a5516fbab5727488 (patch) | |
tree | 716ba793c8f740813c63743c4c2ee65122d14db9 /net-dns/pdns-recursor/files | |
parent | Dropping DEPEND on dev-lang/perl because dev-util/intltool already depends on it (diff) | |
download | gentoo-2-b52eafa441e7dbb11a4ff3d9a5516fbab5727488.tar.gz gentoo-2-b52eafa441e7dbb11a4ff3d9a5516fbab5727488.tar.bz2 gentoo-2-b52eafa441e7dbb11a4ff3d9a5516fbab5727488.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-dns/pdns-recursor/files')
-rw-r--r-- | net-dns/pdns-recursor/files/pdns-recursor-3.1.7.1-error-message.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-dns/pdns-recursor/files/pdns-recursor-3.1.7.1-error-message.patch b/net-dns/pdns-recursor/files/pdns-recursor-3.1.7.1-error-message.patch new file mode 100644 index 000000000000..ed1f2285c797 --- /dev/null +++ b/net-dns/pdns-recursor/files/pdns-recursor-3.1.7.1-error-message.patch @@ -0,0 +1,11 @@ +--- pdns-recursor-3.1.7.1/rec_channel.cc ++++ pdns-recursor-3.1.7.1/rec_channel.cc +@@ -100,7 +100,7 @@ + strcpy(remote.sun_path,(path+"/"+fname).c_str()); + if(::connect(d_fd, (sockaddr*)&remote, sizeof(remote)) < 0) { + unlink(d_local.sun_path); +- throw AhuException("Unable to connect to remote '"+path+fname+"': "+string(strerror(errno))); ++ throw AhuException("Unable to connect to remote '"+path+"/"+fname+"': "+string(strerror(errno))); + } + } + |