summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1999-02-12 19:45:53 +0000
committerache <ache@FreeBSD.org>1999-02-12 19:45:53 +0000
commita36bb76941a692c75575f75edde8496549fcc44b (patch)
tree1ec14e978cb8e5433475801480481942cc32e586 /lib/libc
parentf7bd2e3ea86c96c41d3ee6a5b3ec61c94e65d1b9 (diff)
downloadFreeBSD-src-a36bb76941a692c75575f75edde8496549fcc44b.zip
FreeBSD-src-a36bb76941a692c75575f75edde8496549fcc44b.tar.gz
fix tabs lost apparently in copy&paste
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/realpath.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/realpath.c b/lib/libc/stdlib/realpath.c
index b5177e9..80ed43f 100644
--- a/lib/libc/stdlib/realpath.c
+++ b/lib/libc/stdlib/realpath.c
@@ -62,7 +62,7 @@ realpath(path, resolved)
struct stat sb;
int fd, n, rootd, serrno;
char *p, *q, wbuf[MAXPATHLEN];
- int symlinks = 0;
+ int symlinks = 0;
/* Save the starting point. */
if ((fd = open(".", O_RDONLY)) < 0) {
@@ -101,10 +101,10 @@ loop:
/* Deal with the last component. */
if (*p != '\0' && lstat(p, &sb) == 0) {
if (S_ISLNK(sb.st_mode)) {
- if (++symlinks > MAXSYMLINKS) {
- errno = ELOOP;
- goto err1;
- }
+ if (++symlinks > MAXSYMLINKS) {
+ errno = ELOOP;
+ goto err1;
+ }
n = readlink(p, resolved, MAXPATHLEN - 1);
if (n < 0)
goto err1;
OpenPOWER on IntegriCloud