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 151248 Details for
Bug 233215
verify-db.pl still assumes the db dir is always in the instance dir
[?]
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]
Proposed patch (**** patch.4.2.52.txn)
patch.4.2.52.txn (text/plain), 2.50 KB, created by
Noriko Hosoi
on 2007-03-30 01:47:16 UTC
(
hide
)
Description:
Proposed patch (**** patch.4.2.52.txn)
Filename:
MIME Type:
Creator:
Noriko Hosoi
Created:
2007-03-30 01:47:16 UTC
Size:
2.50 KB
patch
obsolete
>*** txn/txn_auto.c Mon Nov 17 12:01:27 2003 >--- txn/txn_auto.c Thu Mar 29 14:16:46 2007 >*************** >*** 236,241 **** >--- 236,242 ---- > u_int32_t i; > int ch; > int ret; >+ time_t timeval; > > notused2 = DB_TXN_ABORT; > notused3 = NULL; >*************** >*** 252,261 **** > (u_long)argp->prev_lsn.file, > (u_long)argp->prev_lsn.offset); > (void)printf("\topcode: %lu\n", (u_long)argp->opcode); >! lt = localtime((time_t *)&argp->timestamp); > (void)printf( > "\ttimestamp: %ld (%.24s, 20%02lu%02lu%02lu%02lu%02lu.%02lu)\n", >! (long)argp->timestamp, ctime((time_t *)&argp->timestamp), > (u_long)lt->tm_year - 100, (u_long)lt->tm_mon+1, > (u_long)lt->tm_mday, (u_long)lt->tm_hour, > (u_long)lt->tm_min, (u_long)lt->tm_sec); >--- 253,263 ---- > (u_long)argp->prev_lsn.file, > (u_long)argp->prev_lsn.offset); > (void)printf("\topcode: %lu\n", (u_long)argp->opcode); >! timeval = (time_t)argp->timestamp; >! lt = localtime(&timeval); > (void)printf( > "\ttimestamp: %ld (%.24s, 20%02lu%02lu%02lu%02lu%02lu.%02lu)\n", >! (long)argp->timestamp, ctime(&timeval), > (u_long)lt->tm_year - 100, (u_long)lt->tm_mon+1, > (u_long)lt->tm_mday, (u_long)lt->tm_hour, > (u_long)lt->tm_min, (u_long)lt->tm_sec); >*************** >*** 528,533 **** >--- 530,536 ---- > __txn_ckp_args *argp; > struct tm *lt; > int ret; >+ time_t timeval; > > notused2 = DB_TXN_ABORT; > notused3 = NULL; >*************** >*** 547,556 **** > (u_long)argp->ckp_lsn.file, (u_long)argp->ckp_lsn.offset); > (void)printf("\tlast_ckp: [%lu][%lu]\n", > (u_long)argp->last_ckp.file, (u_long)argp->last_ckp.offset); >! lt = localtime((time_t *)&argp->timestamp); > (void)printf( > "\ttimestamp: %ld (%.24s, 20%02lu%02lu%02lu%02lu%02lu.%02lu)\n", >! (long)argp->timestamp, ctime((time_t *)&argp->timestamp), > (u_long)lt->tm_year - 100, (u_long)lt->tm_mon+1, > (u_long)lt->tm_mday, (u_long)lt->tm_hour, > (u_long)lt->tm_min, (u_long)lt->tm_sec); >--- 550,560 ---- > (u_long)argp->ckp_lsn.file, (u_long)argp->ckp_lsn.offset); > (void)printf("\tlast_ckp: [%lu][%lu]\n", > (u_long)argp->last_ckp.file, (u_long)argp->last_ckp.offset); >! timeval = (time_t)argp->timestamp; >! lt = localtime(&timeval); > (void)printf( > "\ttimestamp: %ld (%.24s, 20%02lu%02lu%02lu%02lu%02lu.%02lu)\n", >! (long)argp->timestamp, ctime(&timeval), > (u_long)lt->tm_year - 100, (u_long)lt->tm_mon+1, > (u_long)lt->tm_mday, (u_long)lt->tm_hour, > (u_long)lt->tm_min, (u_long)lt->tm_sec);
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 233215
:
150603
|
150606
|
151245
|
151246
|
151247
| 151248 |
151305
|
152506
|
279051