summaryrefslogtreecommitdiff
path: root/usr/src/common/fs/ufsops.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/common/fs/ufsops.c')
-rw-r--r--usr/src/common/fs/ufsops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/common/fs/ufsops.c b/usr/src/common/fs/ufsops.c
index d4e782639d..52e716f1de 100644
--- a/usr/src/common/fs/ufsops.c
+++ b/usr/src/common/fs/ufsops.c
@@ -22,6 +22,7 @@
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
+ * Copyright (c) 2016 by Delphix. All rights reserved.
*/
#include <sys/types.h>
@@ -661,7 +662,7 @@ bufs_lseek(int fd, off_t addr, int whence)
{
fileid_t *filep;
- /* Make sure user knows what file he is talking to */
+ /* Make sure user knows what file they are talking to */
if (!(filep = find_fp(fd)))
return (-1);
@@ -738,7 +739,7 @@ bufs_close(int fd)
{
fileid_t *filep;
- /* Make sure user knows what file he is talking to */
+ /* Make sure user knows what file they are talking to */
if (!(filep = find_fp(fd)))
return (-1);