* commit 'cfd7c2a05166a3ff27b2145b007834408d95a2e0': Rename getline to fs_getline for fs_mgr
This commit is contained in:
commit
0726652874
1 changed files with 3 additions and 3 deletions
|
@ -173,7 +173,7 @@ out:
|
|||
* then return an empty buffer. This effectively ignores lines that are too long.
|
||||
* On EOF, return null.
|
||||
*/
|
||||
static char *getline(char *buf, int size, FILE *file)
|
||||
static char *fs_getline(char *buf, int size, FILE *file)
|
||||
{
|
||||
int cnt = 0;
|
||||
int eof = 0;
|
||||
|
@ -247,7 +247,7 @@ static struct fstab_rec *read_fstab(char *fstab_path)
|
|||
}
|
||||
|
||||
entries = 0;
|
||||
while (getline(line, sizeof(line), fstab_file)) {
|
||||
while (fs_getline(line, sizeof(line), fstab_file)) {
|
||||
/* if the last character is a newline, shorten the string by 1 byte */
|
||||
len = strlen(line);
|
||||
if (line[len - 1] == '\n') {
|
||||
|
@ -274,7 +274,7 @@ static struct fstab_rec *read_fstab(char *fstab_path)
|
|||
fseek(fstab_file, 0, SEEK_SET);
|
||||
|
||||
cnt = 0;
|
||||
while (getline(line, sizeof(line), fstab_file)) {
|
||||
while (fs_getline(line, sizeof(line), fstab_file)) {
|
||||
/* if the last character is a newline, shorten the string by 1 byte */
|
||||
len = strlen(line);
|
||||
if (line[len - 1] == '\n') {
|
||||
|
|
Loading…
Reference in a new issue