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 315965 Details for
Bug 461405
Error message improvements
[?]
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]
Improve primary db index creation error messages
0004-Improve-primary-db-index-creation-error-messages.patch (text/plain), 1.38 KB, created by
Ville Skyttä
on 2008-09-07 11:17:33 UTC
(
hide
)
Description:
Improve primary db index creation error messages
Filename:
MIME Type:
Creator:
Ville Skyttä
Created:
2008-09-07 11:17:33 UTC
Size:
1.38 KB
patch
obsolete
>From 1c0b21d04429d88269defef36673c3504293d3c5 Mon Sep 17 00:00:00 2001 >From: =?utf-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi> >Date: Sun, 7 Sep 2008 11:45:54 +0300 >Subject: [PATCH] Improve primary db index creation error messages. > >--- > db.c | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/db.c b/db.c >index a6af904..949a6c9 100644 >--- a/db.c >+++ b/db.c >@@ -462,8 +462,8 @@ yum_db_index_primary_tables (sqlite3 *db, GError **err) > > if (rc != SQLITE_OK) { > g_set_error (err, YUM_DB_ERROR, YUM_DB_ERROR, >- "Can not create index on %s table: %s", >- deps[i], sqlite3_errmsg (db)); >+ "Can not create pkg%s index on %s: %s", >+ deps[i], deps[i], sqlite3_errmsg (db)); > return; > } > >@@ -472,8 +472,8 @@ yum_db_index_primary_tables (sqlite3 *db, GError **err) > rc = sqlite3_exec (db, query, NULL, NULL, NULL); > if (rc != SQLITE_OK) { > g_set_error (err, YUM_DB_ERROR, YUM_DB_ERROR, >- "Can not create %sname index: %s", >- deps[i], sqlite3_errmsg (db)); >+ "Can not create %sname index on %s: %s", >+ deps[i], deps[i], sqlite3_errmsg (db)); > return; > } > } >-- >1.5.5.1 >
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 461405
:
315964
| 315965