int main(int argc, char **argv) { if ((!parseArgs(argc, argv)) || (!getDisplay(argc, argv))) exit(-1); settings.locale.value = setlocale(LC_ALL, settings.locale.value); settings.locale.src = FROM_SERVER; VMSG1(7, "locale is %s\n", settings.locale.value); if (dpy) getServerValues(); if (settings.config.value && (!applyConfig(settings.config.value))) exit(-3); if (!applyRules()) exit(-4); if (!applyComponentNames()) exit(-5); if (dpy) XCloseDisplay(dpy); exit(0); }
int main(int argc, char **argv) { if ((!parseArgs(argc, argv)) || (!getDisplay(argc, argv))) exit(-1); svValue[LOCALE_NDX] = setlocale(LC_ALL, svValue[LOCALE_NDX]); svSrc[LOCALE_NDX] = FROM_SERVER; VMSG1(7, "locale is %s\n", svValue[LOCALE_NDX]); if (dpy) getServerValues(); if (svValue[CONFIG_NDX] && (!applyConfig(svValue[CONFIG_NDX]))) exit(-3); if (!applyRules()) exit(-4); if (!applyComponentNames()) exit(-5); if (dpy) XCloseDisplay(dpy); exit(0); }