summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rpc.lockd
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2008-11-25 00:00:52 +0000
committerjmc <jmc@openbsd.org>2008-11-25 00:00:52 +0000
commitd595756b3649e2d27dc545107fb96105eefe3265 (patch)
tree4f50d546955bde0dd7b6153ffa7a1afcc5ff2132 /usr.sbin/rpc.lockd
parent- when using fread/fwrite, do not swap the size and nmemb arguments. no (diff)
downloadwireguard-openbsd-d595756b3649e2d27dc545107fb96105eefe3265.tar.xz
wireguard-openbsd-d595756b3649e2d27dc545107fb96105eefe3265.zip
grammar fix (in comment): from Anathae Townsend
Diffstat (limited to 'usr.sbin/rpc.lockd')
-rw-r--r--usr.sbin/rpc.lockd/lockd_lock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpc.lockd/lockd_lock.c b/usr.sbin/rpc.lockd/lockd_lock.c
index 9a84aa20e50..714b33f919b 100644
--- a/usr.sbin/rpc.lockd/lockd_lock.c
+++ b/usr.sbin/rpc.lockd/lockd_lock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lockd_lock.c,v 1.4 2008/06/15 04:48:03 sturm Exp $ */
+/* $OpenBSD: lockd_lock.c,v 1.5 2008/11/25 00:00:52 jmc Exp $ */
/*
* Copyright (c) 2000 Manuel Bouyer.
@@ -115,7 +115,7 @@ struct file_lock {
#define LKST_LOCKED 1 /* lock is locked */
#define LKST_WAITING 2 /* file is already locked by another host */
#define LKST_PROCESSING 3 /* child is trying to acquire the lock */
-#define LKST_DYING 4 /* must dies when we get news from the child */
+#define LKST_DYING 4 /* must die when we get news from the child */
static struct file_lock *lalloc(void);
void lfree(struct file_lock *);