aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-11-10 06:21:46 +0000
committerMike Frysinger <vapier@gentoo.org>2008-11-10 06:21:46 +0000
commit3a22120c45757f4e034f1c1afb90c5fc406fe111 (patch)
tree4aeeedb059a379629b9a279bc90025a5960c94b3 /libsandbox
parentlibsandbox: also handle lutimes() (diff)
downloadsandbox-3a22120c45757f4e034f1c1afb90c5fc406fe111.tar.gz
sandbox-3a22120c45757f4e034f1c1afb90c5fc406fe111.tar.bz2
sandbox-3a22120c45757f4e034f1c1afb90c5fc406fe111.zip
fix grammar: do not exist -> does not exist
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libsandbox')
-rw-r--r--libsandbox/libsandbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsandbox/libsandbox.c b/libsandbox/libsandbox.c
index 0666355..012362b 100644
--- a/libsandbox/libsandbox.c
+++ b/libsandbox/libsandbox.c
@@ -318,7 +318,7 @@ static char *getcmdline(void)
int fd;
if (-1 == stat(PROC_SELF_CMDLINE, &st)) {
- /* Don't care if it do not exist */
+ /* Don't care if it does not exist */
errno = 0;
return NULL;
}