summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1997-08-21 17:38:34 +0000
committerderaadt <deraadt@openbsd.org>1997-08-21 17:38:34 +0000
commit6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870 (patch)
tree92d1d09f39d9e3f5c33cf7d420d5dea16e50608b
parentA return status of YPPUSH_AGE isn't a failure so keep quiet as SunOS. But show it (and YPPUSH_SUCC) if verbose output is requested. -moj (diff)
downloadwireguard-openbsd-6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870.tar.xz
wireguard-openbsd-6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870.zip
.noident not .noindent; fc@parkone.ci.oakland.ca.us
-rw-r--r--libexec/identd/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/identd/parse.c b/libexec/identd/parse.c
index 9176078d0ed..b86a6ee0cd7 100644
--- a/libexec/identd/parse.c
+++ b/libexec/identd/parse.c
@@ -44,7 +44,7 @@ check_noident(homedir)
if (!homedir)
return 0;
- if (snprintf(path, sizeof path, "%s/.noindent", homedir) >= sizeof path)
+ if (snprintf(path, sizeof path, "%s/.noident", homedir) >= sizeof path)
return 0;
if (stat(path, &st) == 0)
return 1;