diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | support/nfs/xio.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-12-03 Chip Salzenberg <chip@valinux.com> + + * support/nfs/xio.c (xfopen): Initialize x_line to one, not zero. + 2000-11-27 Tobias Ringstrom <tori@tellus.mine.nu> * utils/mountd/auth.c (auth_authenticate): Log the bad path diff --git a/support/nfs/xio.c b/support/nfs/xio.c index 0a250fc..db5e2c3 100644 --- a/support/nfs/xio.c +++ b/support/nfs/xio.c @@ -29,7 +29,7 @@ xfopen(char *fname, char *type) return NULL; xfp = (XFILE *) xmalloc(sizeof(*xfp)); xfp->x_fp = fp; - xfp->x_line = 0; + xfp->x_line = 1; return xfp; } |