Changeset 382cd26 in mainline for uspace/app/klog/klog.c


Ignore:
Timestamp:
2011-04-21T20:34:16Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
82582e4
Parents:
b62dc100
Message:

Remove unwarranted accusation of FAT and attempt to fopen() /log/klog with "a".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/klog/klog.c

    rb62dc100 r382cd26  
    118118        }
    119119       
    120         /*
    121          * Mode "a" would be definitively much better here, but it is
    122          * not well supported by the FAT driver.
    123          */
    124         log = fopen(LOG_FNAME, "w");
     120        log = fopen(LOG_FNAME, "a");
    125121        if (log == NULL)
    126122                printf("%s: Unable to create log file %s (%s)\n", NAME, LOG_FNAME,
Note: See TracChangeset for help on using the changeset viewer.