X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fexport%2Fxtab.c;h=0ddb2516a8d5e8327441555ca668788f6c1850e6;hp=d9265a24e078627725ea4319e89f43a72f5cb7d9;hb=ac5b03be829b4c9369ebfb07a688308721103228;hpb=2d33968c66860ad772aac918992986fe4865b3a4 diff --git a/support/export/xtab.c b/support/export/xtab.c index d9265a2..0ddb251 100644 --- a/support/export/xtab.c +++ b/support/export/xtab.c @@ -6,7 +6,9 @@ * Copyright (C) 1995, 1996 Olaf Kirch */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif #include #include @@ -65,6 +67,9 @@ xtab_mount_read(void) if ((fd=open(_PATH_PROC_EXPORTS, O_RDONLY))>=0) { close(fd); return xtab_read(_PATH_PROC_EXPORTS, 0); + } else if ((fd=open(_PATH_PROC_EXPORTS_ALT, O_RDONLY) >= 0)) { + close(fd); + return xtab_read(_PATH_PROC_EXPORTS_ALT, 0); } else return xtab_read(_PATH_XTAB, 2); } @@ -146,7 +151,7 @@ xtab_append(nfs_export *exp) /* * rename newfile onto oldfile unless - * they are identical + * they are identical */ static void cond_rename(char *newfile, char *oldfile) {