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 846913 Details for
Bug 734434
Messages isn't translatable
[?]
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]
Revised patch
popt-1.16-i18n-help.patch (text/plain), 3.96 KB, created by
Akira TAGOH
on 2014-01-08 03:09:00 UTC
(
hide
)
Description:
Revised patch
Filename:
MIME Type:
Creator:
Akira TAGOH
Created:
2014-01-08 03:09:00 UTC
Size:
3.96 KB
patch
obsolete
>diff -pruN popt-1.16.orig/popthelp.c popt-1.16/popthelp.c >--- popt-1.16.orig/popthelp.c 2009-08-28 09:06:33.000000000 +0900 >+++ popt-1.16/popthelp.c 2014-01-08 12:04:00.888260244 +0900 >@@ -89,7 +89,7 @@ static struct poptOption poptHelpOptions > { "defaults", '\0', POPT_ARG_NONE, &show_option_defaults, 0, > N_("Display option defaults in message"), NULL }, > #endif >- { "", '\0', 0, NULL, 0, N_("Terminate options"), NULL }, >+ { NULL, '\0', 0, NULL, 0, N_("Terminate options"), NULL }, > POPT_TABLEEND > } ; > >@@ -527,8 +527,11 @@ static size_t maxArgWidth(const struct p > if (opt != NULL) > while (opt->longName || opt->shortName || opt->arg) { > if (poptArgType(opt) == POPT_ARG_INCLUDE_TABLE) { >- if (opt->arg) /* XXX program error */ >- len = maxArgWidth(opt->arg, translation_domain); >+ void * arg = opt->arg; >+ /* XXX sick hack to preserve pretense of ABI. */ >+ if (arg == poptHelpOptions) arg = poptHelpOptionsI18N; >+ if (arg) /* XXX program error */ >+ len = maxArgWidth(arg, translation_domain); > if (len > max) max = len; > } else if (!F_ISSET(opt, DOC_HIDDEN)) { > len = sizeof(" ")-1; >@@ -619,19 +622,22 @@ static void singleTableHelp(poptContext > > if (table != NULL) > for (opt = table; opt->longName || opt->shortName || opt->arg; opt++) { >+ void * arg = opt->arg; > if (poptArgType(opt) != POPT_ARG_INCLUDE_TABLE) > continue; >- sub_transdom = getTableTranslationDomain(opt->arg); >+ /* XXX sick hack to preserve pretense of ABI. */ >+ if (arg == poptHelpOptions) arg = poptHelpOptionsI18N; >+ sub_transdom = getTableTranslationDomain(arg); > if (sub_transdom == NULL) > sub_transdom = translation_domain; > > /* If no popt aliases/execs, skip poptAliasOption processing. */ >- if (opt->arg == poptAliasOptions && !(con->numAliases || con->numExecs)) >+ if (arg == poptAliasOptions && !(con->numAliases || con->numExecs)) > continue; > if (opt->descrip) > xx = POPT_fprintf(fp, "\n%s\n", D_(sub_transdom, opt->descrip)); > >- singleTableHelp(con, fp, opt->arg, columns, sub_transdom); >+ singleTableHelp(con, fp, arg, columns, sub_transdom); > } > } > >@@ -808,22 +814,25 @@ static size_t singleTableUsage(poptConte > translation_domain = (const char *)opt->arg; > } else > if (poptArgType(opt) == POPT_ARG_INCLUDE_TABLE) { >+ void * arg = opt->arg; >+ /* XXX sick hack to preserve pretense of ABI. */ >+ if (arg == poptHelpOptions) arg = poptHelpOptionsI18N; > if (done) { > int i = 0; > if (done->opts != NULL) > for (i = 0; i < done->nopts; i++) { > const void * that = done->opts[i]; >- if (that == NULL || that != opt->arg) >+ if (that == NULL || that != arg) > /*@innercontinue@*/ continue; > /*@innerbreak@*/ break; > } > /* Skip if this table has already been processed. */ >- if (opt->arg == NULL || i < done->nopts) >+ if (arg == NULL || i < done->nopts) > continue; > if (done->opts != NULL && done->nopts < done->maxopts) >- done->opts[done->nopts++] = (const void *) opt->arg; >+ done->opts[done->nopts++] = (const void *) arg; > } >- columns->cur = singleTableUsage(con, fp, columns, opt->arg, >+ columns->cur = singleTableUsage(con, fp, columns, arg, > translation_domain, done); > } else > if ((opt->longName || opt->shortName) && !F_ISSET(opt, DOC_HIDDEN)) { >@@ -864,9 +873,13 @@ static size_t showShortOptions(const str > if (!strchr(s, opt->shortName) && isprint((int)opt->shortName) > && opt->shortName != ' ') > s[strlen(s)] = opt->shortName; >- } else if (poptArgType(opt) == POPT_ARG_INCLUDE_TABLE) >- if (opt->arg) /* XXX program error */ >- len = showShortOptions(opt->arg, fp, s); >+ } else if (poptArgType(opt) == POPT_ARG_INCLUDE_TABLE) { >+ void * arg = opt->arg; >+ /* XXX sick hack to preserve pretense of ABI. */ >+ if (arg == poptHelpOptions) arg = poptHelpOptionsI18N; >+ if (arg) /* XXX program error */ >+ len = showShortOptions(arg, fp, s); >+ } > } > > /* On return to top level, print the short options, return print length. */
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 734434
:
572052
|
828357
| 846913