summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xgurpmi2
-rwxr-xr-xgurpmi22
3 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index caa24f09..38bd863c 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@
- bump split-length from 8 to 50
improves installing gnome in a chroot from 14m to 11m
- update bash completion
+- gurpmi:
+ o fix segfaulting when managing exceptions
- fix some warnings with perl 5.20
Version 7.31 - 24 January 2014
diff --git a/gurpmi b/gurpmi
index bc66e877..7c79f87e 100755
--- a/gurpmi
+++ b/gurpmi
@@ -17,7 +17,7 @@ use gurpmi;
use urpm::util 'basename';
# For other distros w/o exception support:
-eval { Glib->enable_exceptions2 };
+eval { Glib->enable_exceptions3 };
if (my $err = $@) {
warn "Error: $err\n";
}
diff --git a/gurpmi2 b/gurpmi2
index bb8e60f5..7f346a39 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -29,7 +29,7 @@ our $test = 0;
our $use_provides = 1;
# For other distros w/o exception support:
-eval { Glib->enable_exceptions2 };
+eval { Glib->enable_exceptions3 };
if (my $err = $@) {
warn "Error: $err\n";
}