diff options
author | 1997-08-21 17:38:34 +0000 | |
---|---|---|
committer | 1997-08-21 17:38:34 +0000 | |
commit | 6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870 (patch) | |
tree | 92d1d09f39d9e3f5c33cf7d420d5dea16e50608b | |
parent | A 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) | |
download | wireguard-openbsd-6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870.tar.xz wireguard-openbsd-6d0ce621eb56ff7d3fc6ad38a70b00dd36cca870.zip |
.noident not .noindent; fc@parkone.ci.oakland.ca.us
-rw-r--r-- | libexec/identd/parse.c | 2 |
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; |