/[smeserver]/rpms/e-smith-lib/sme7/e-smith-lib-1.18.0-FixFileDescriptorLeak.patch
ViewVC logotype

Annotation of /rpms/e-smith-lib/sme7/e-smith-lib-1.18.0-FixFileDescriptorLeak.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Thu Nov 1 20:15:53 2007 UTC (16 years, 7 months ago) by bytegw
Branch: MAIN
CVS Tags: e-smith-lib-1_18_0-23_el4_sme, e-smith-lib-1_18_0-19_el4_sme, e-smith-lib-1_18_0-24_el4_sme, e-smith-lib-1_18_0-28_el4_sme, e-smith-lib-1_18_0-18_el4_sme, e-smith-lib-1_18_0-22_el4_sme, e-smith-lib-1_18_0-27_el4_sme, e-smith-lib-1_18_0-21_el4_sme, e-smith-lib-1_18_0-26_el4_sme, e-smith-lib-1_18_0-20_el4_sme, e-smith-lib-1_18_0-25_el4_sme
Updates

1 bytegw 1.1 diff -Nur -x '*.orig' -x '*.rej' e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm mezzanine_patched_e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm
2     --- e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm 2006-02-17 03:52:14.000000000 +0000
3     +++ mezzanine_patched_e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm 2007-11-01 20:06:45.000000000 +0000
4     @@ -93,6 +93,7 @@
5     -f "$localedir/$locale/LC_MESSAGES/server-console.po");
6     }
7    
8     + closedir LOCALE;
9     return @locales;
10     }
11    
12     @@ -262,7 +263,9 @@
13    
14     return () unless opendir LOCALE, $localedir;
15    
16     - return grep(!/\./, readdir LOCALE);
17     + my @locales = grep(!/\./, readdir LOCALE);
18     + closedir LOCALE;
19     + return @locales;
20     }
21    
22     =head2 fallbackLanguage()

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed