Avoid a name conflict with future functionality:

getfstab() -> dump_getfstab()
This commit is contained in:
Matthew N. Dodd 2003-04-07 11:34:12 +00:00
parent aa5427ae66
commit a3165d16af
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113214
3 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ void writerec(char *dp, int isspcl);
void Exit(int status) __dead2;
void dumpabort(int signo);
void getfstab(void);
void dump_getfstab(void);
char *rawname(char *cp);
union dinode *getino(ino_t inum, int *mode);

View File

@ -304,7 +304,7 @@ main(int argc, char *argv[])
if (signal(SIGINT, interrupt) == SIG_IGN)
signal(SIGINT, SIG_IGN);
getfstab(); /* /etc/fstab snarfed */
dump_getfstab(); /* /etc/fstab snarfed */
/*
* disk can be either the full special file name,
* the suffix of the special file name,

View File

@ -295,7 +295,7 @@ struct pfstab {
static SLIST_HEAD(, pfstab) table;
void
getfstab(void)
dump_getfstab(void)
{
struct fstab *fs;
struct pfstab *pf;
@ -367,7 +367,7 @@ lastdump(int arg) /* w ==> just what to do; W ==> most recent dumps */
struct tm *tlast;
(void) time(&tnow);
getfstab(); /* /etc/fstab input */
dump_getfstab(); /* /etc/fstab input */
initdumptimes(); /* /etc/dumpdates input */
qsort((char *) ddatev, nddates, sizeof(struct dumpdates *), datesort);