diff options
author | Darin Adler <darin@src.gnome.org> | 2000-10-03 06:33:41 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2000-10-03 06:33:41 +0000 |
commit | b48cda851431abc9d0b5bb64091169c9516275bc (patch) | |
tree | f61f3d306f49a6d0a98b14f8b49513a271127f61 /check-THANKS.pl | |
parent | 10b8bae1c2bf9199ed396af201a8e59ee6a4c76d (diff) | |
download | nautilus-b48cda851431abc9d0b5bb64091169c9516275bc.tar.gz |
Saw the Tinderbox broken, so I just had to fix it. Also, I
couldn't compile, and check-THANKS.pl failed.
* libnautilus-extensions/nautilus-string.c:
(nautilus_istr_compare): Change back nautilus_istr_compare to its
old meaning.
* libnautilus-extensions/nautilus-glib-extensions.c:
(compare_strings_case_breaks_ties),
(nautilus_g_str_list_sort_case_insensitive): Make the case
insensitive sort use nautilus_strcmp_case_breaks_ties.
* components/services/install/lib/eazel-install-protocols.c:
(eazel_install_fetch_package_by_id):
* components/services/install/lib/eazel-install-query.c:
(eazel_install_simple_query):
* components/services/install/lib/eazel-install-rpm-glue.c:
(install_new_packages), (eazel_install_prepare_package_system),
(eazel_install_free_package_system),
(eazel_install_add_to_rpm_set), (eazel_install_fetch_dependencies):
* components/services/install/lib/eazel-install-rpm-signature.c:
(trilobite_check_rpm_signature):
* components/services/install/lib/eazel-install-types.c:
(packagedata_status_str_to_enum),
(packagedata_modstatus_enum_to_str),
(packagedata_modstatus_str_to_enum):
* components/services/install/lib/eazel-install-xml-package-list.c:
(generate_xml_package_list):
Fixed a bunch of uninitialized variable warnings. At least one was
probably a real bug, so Eskil needs to review these changes.
* components/rpmview/nautilus-rpm-view.c:
(nautilus_rpm_view_update_from_uri): This didn't compile with the
Red Hat 6.1 version of the rpm library. So I fixed it. I hope I
did it right. Eskil needs to review this change.
* THANKS: Victor's name needed another space between it and the
email address.
* check-THANKS.pl: Missing comma, also the misspelling of Josh's
email address was not mapped to his new email address.
Diffstat (limited to 'check-THANKS.pl')
-rwxr-xr-x | check-THANKS.pl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/check-THANKS.pl b/check-THANKS.pl index 5e5b49a18..2c9792ee4 100755 --- a/check-THANKS.pl +++ b/check-THANKS.pl @@ -50,7 +50,7 @@ my %email_map = ('at@ue-spacy.com' => 'tagoh@gnome.gr.jp', 'chief_wanker@eazel.com' => 'eskil@eazel.com', 'eskil@eazel.om' => 'eskil@eazel.com', 'yakk@yakk.net' => 'yakk@yakk.net.au', - 'linuxfan@ionet..net' => 'linuxfan@ionet.net', + 'linuxfan@ionet..net' => 'josh@eazel.com', 'rslokow@eazel.com' => 'rslomkow@eazel.com', 'snickell@stanford.edu' => 'seth@eazel.com', 'mathieu@gnome.org' => 'mathieu@eazel.com', @@ -58,7 +58,7 @@ my %email_map = ('at@ue-spacy.com' => 'tagoh@gnome.gr.jp', 'kmaraas@online.no' => 'kmaraas@gnome.org', 'kmaraas@gnu.org' => 'kmaraas@gnome.org', 'raph@gimp.org' => 'raph@acm.org', - 'baulig@suse.de' => 'martin@home-of-linux.org' + 'baulig@suse.de' => 'martin@home-of-linux.org', 'linuxfan@ionet.net' => 'josh@eazel.com'); @@ -115,7 +115,7 @@ LOOP: while (<CHANGELOGS>) { if ($name_map{$name}) { $name = $name_map{$name}; - }; + } $email =~ s/^.*<//; @@ -124,7 +124,7 @@ LOOP: while (<CHANGELOGS>) { if ($email_map{$email}) { $email = $email_map{$email}; - }; + } push @lines, "${name} <${email}>"; } @@ -205,4 +205,3 @@ if (@double_credited) { # the About dialog. print "\n"; - |