- Status Closed
- Percent Complete
- Task Type Bugs
- Category
-
Assigned To
bagder - Operating System
- Severity Low
- Priority Very Low
- Reported Version
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
FS#1384 - settings.c config_block bug?
I suspect I ran across a bug in CVS-030521 settings.c
- if (config_block[0×29] != 0xae) { /* bug? */
+ if (config_block[0xae] != 0xff) {
The Later looks more in line with surrounding statements.
Bug consequence? fade_on_stop and caption_backlight
might occasionally be set incorrectly.
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
Here’s a proper patch.
Great catch!
I’ve applied your fix and commited it now.