diff options
author | gabor <gabor@FreeBSD.org> | 2013-04-17 11:40:10 +0000 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2013-04-17 11:40:10 +0000 |
commit | d3ee8e3ff6bd3ac253dc2660d5778b4b2990dd75 (patch) | |
tree | 6c2aee498f9e11d960770edc4c69d81c03d3cc25 /lib/libc/stdlib/realpath.c | |
parent | 534bc4664d43755c6bed54f3c55baaddc569aba3 (diff) | |
download | FreeBSD-src-d3ee8e3ff6bd3ac253dc2660d5778b4b2990dd75.zip FreeBSD-src-d3ee8e3ff6bd3ac253dc2660d5778b4b2990dd75.tar.gz |
- Correct mispellings of the word occurrence
Submitted by: Christoph Mallon <christoph.mallon@gmx.de> (via private mail)
Diffstat (limited to 'lib/libc/stdlib/realpath.c')
-rw-r--r-- | lib/libc/stdlib/realpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/realpath.c b/lib/libc/stdlib/realpath.c index 8fd5457..a2a9329 100644 --- a/lib/libc/stdlib/realpath.c +++ b/lib/libc/stdlib/realpath.c @@ -139,7 +139,7 @@ realpath(const char * __restrict path, char * __restrict resolved) * Only the trailing slashes are not covered * by other checks in the loop, but we verify * the prefix for any (rare) "//" or "/\0" - * occurence to not implement lookahead. + * occurrence to not implement lookahead. */ if (lstat(resolved, &sb) != 0) { if (m) |