diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 6 | ||||
-rw-r--r-- | extension/filefuncs.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 926bf0b5..3e1de05c 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,4 +1,8 @@ -Thu Jan 13 20:37:02 2011 Andrew J. Schorr <aschorr@telemetry-investments.com> +Thu Mar 31 22:58:19 2011 Arnold D. Robbins <arnold@skeeve.com> + + * filefuncs.c (do_stat): Fix a comment. Also in doc. + +Thu Jan 13 20:37:02 2011 Andrew J. Schorr <aschorr@telemetry-investments.com> * filefuncs.c (do_stat): Malloc the buffer to read the contents of the link. From mail of June 21, 2005. diff --git a/extension/filefuncs.c b/extension/filefuncs.c index 7efa912e..ad7828f3 100644 --- a/extension/filefuncs.c +++ b/extension/filefuncs.c @@ -172,7 +172,7 @@ do_stat(int nargs) if (do_lint && get_curfunc_arg_count() > 2) lintwarn("stat: called with too many arguments"); - /* directory is first arg, array to hold results is second */ + /* file is first arg, array to hold results is second */ file = get_scalar_argument(0, FALSE); array = get_array_argument(1, FALSE); |