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 282301 Details for
Bug 397711
[RFE] [PATCH] make yum-updatesd use sendmail
[?]
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]
yum-email-crash.patch
yum-email-crash.patch (text/plain), 883 bytes, created by
Pierre Ossman
on 2007-12-09 17:43:39 UTC
(
hide
)
Description:
yum-email-crash.patch
Filename:
MIME Type:
Creator:
Pierre Ossman
Created:
2007-12-09 17:43:39 UTC
Size:
883 bytes
patch
obsolete
>fix crash on email notification and missing type > >The 'type' attribute is not set for packages that are a part of the >original set for the release. Make sure that we don't get a crash when >this field is missing. > >Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> > >-- yum-updatesd-helper.orig 2007-12-09 18:27:49.000000000 +0100 >+++ yum-updatesd-helper 2007-12-09 18:36:48.000000000 +0100 >@@ -162,7 +162,10 @@ > def _msgPacketList(self, updateInfo): > output = "" > for package in updateInfo: >- output += " %-30s %-10s\n" % (package[0]['name'], package[0]['type']) >+ if package[0].has_key('type'): >+ output += " %-30s %-10s\n" % (package[0]['name'], package[0]['type']) >+ else: >+ output += " %-30s\n" % (package[0]['name']) > return output > > def _sendMessage(self, subject, body): >
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 397711
:
268001
|
282291
| 282301