Chameleon

Chameleon Commit Details

Date:2010-11-07 01:38:36 (13 years 5 months ago)
Author:Evan Lojewski
Commit:631
Parents: 630
Message:changed loadConfigFile behavoir, nolonger forces file to be on bt(0,0)
Changes:
M/branches/meklort/i386/libsaio/stringTable.c

File differences

branches/meklort/i386/libsaio/stringTable.c
586586
587587
588588
589
589
590590
591
592
593
594
591595
596
592597
593598
594599
{
int fd, count;
if ((fd = open_bvdev("bt(0,0)", configFile, 0)) < 0) {
/*if ((fd = open_bvdev("bt(0,0)", configFile, 0)) < 0) {
return -1;
}*/
if ((fd = open(configFile, 0)) < 0) {
return -1;
}
// read file
count = read(fd, config->plist, IO_CONFIG_DATA_SIZE);
close(fd);

Archive Download the corresponding diff file

Revision: 631