From 8cf269c998f8592f4022af4b05703cae0e12ba7c Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 21 Aug 2019 20:14:07 +0300 Subject: Document statvfs in filefuncs.3am. --- extension/filefuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extension/filefuncs.c') diff --git a/extension/filefuncs.c b/extension/filefuncs.c index 1ea25dbc..828f68ac 100644 --- a/extension/filefuncs.c +++ b/extension/filefuncs.c @@ -10,7 +10,7 @@ */ /* - * Copyright (C) 2001, 2004, 2005, 2010-2018 + * Copyright (C) 2001, 2004, 2005, 2010-2019 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the @@ -527,7 +527,7 @@ do_statvfs(int nargs, awk_value_t *result, struct awk_ext_func *unused) /* always empty out the array */ clear_array(array); - /* stat the file; if error, set ERRNO and return */ + /* statvfs the filesystem; if error, set ERRNO and return */ ret = statvfs(name, & vfsbuf); if (ret < 0) { update_ERRNO_int(errno); -- cgit v1.2.3