Changes in uspace/app/klog/klog.c [382cd26:6119f24] in mainline


Ignore:
File:
1 edited

Legend:

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

    r382cd26 r6119f24  
    118118        }
    119119       
    120         log = fopen(LOG_FNAME, "a");
     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");
    121125        if (log == NULL)
    122126                printf("%s: Unable to create log file %s (%s)\n", NAME, LOG_FNAME,
Note: See TracChangeset for help on using the changeset viewer.