diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-08-21 20:14:07 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-08-21 20:14:07 +0300 |
commit | 8cf269c998f8592f4022af4b05703cae0e12ba7c (patch) | |
tree | 545ef7a8dd9fd9aad35461b9bb661984f31576b3 /extension/filefuncs.c | |
parent | 98e500ff3ceb035d9d42acf25aa365940cf47568 (diff) | |
download | egawk-8cf269c998f8592f4022af4b05703cae0e12ba7c.tar.gz egawk-8cf269c998f8592f4022af4b05703cae0e12ba7c.tar.bz2 egawk-8cf269c998f8592f4022af4b05703cae0e12ba7c.zip |
Document statvfs in filefuncs.3am.
Diffstat (limited to 'extension/filefuncs.c')
-rw-r--r-- | extension/filefuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |