Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 919051 Details for
Bug 1057298
irs_resconf_load failed: 59. Can't initialize context: invalid address format
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch
0001-irs-resconf-treat-scope-delimiter-in-link-local-name.patch (text/plain), 1.21 KB, created by
Tomáš Hozza
on 2014-07-18 11:01:45 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Tomáš Hozza
Created:
2014-07-18 11:01:45 UTC
Size:
1.21 KB
patch
obsolete
>From b3ffcd03754a7474fe1cf08d0462441f44a215cb Mon Sep 17 00:00:00 2001 >From: Jiri Popelka <jpopelka@redhat.com> >Date: Tue, 13 May 2014 14:41:38 +0200 >Subject: [PATCH] irs/resconf: treat % scope-delimiter in link-local nameserver > >for example: >nameserver fe80::5054:ff:fe29:324%ens3 > >Signed-off-by: Tomas Hozza <thozza@redhat.com> >--- > lib/irs/resconf.c | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/lib/irs/resconf.c b/lib/irs/resconf.c >index 6b7085e..347fbff 100644 >--- a/lib/irs/resconf.c >+++ b/lib/irs/resconf.c >@@ -279,6 +279,7 @@ create_addr(const char *buffer, isc_netaddr_t *addr, int convert_zero) { > static isc_result_t > resconf_parsenameserver(irs_resconf_t *conf, FILE *fp) { > char word[RESCONFMAXLINELEN]; >+ char *el; > int cp; > isc_result_t result; > >@@ -294,6 +295,11 @@ resconf_parsenameserver(irs_resconf_t *conf, FILE *fp) { > if (cp != EOF && cp != '\n') > return (ISC_R_UNEXPECTEDTOKEN); /* Extra junk on line. */ > >+ /* handle interface delimiter used with IPv6 addresses. >+ e.g. nameserver fe80::5054:ff:fe29:324%ens3 */ >+ if ((el = strchr(word, '%')) != NULL) >+ *el = '\0'; >+ > result = add_server(conf->mctx, word, &conf->nameservers); > if (result != ISC_R_SUCCESS) > return (result); >-- >1.9.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1057298
:
895131
| 919051