aboutsummaryrefslogtreecommitdiffstats
path: root/guts/readlinkat.c
blob: d483ab5b4b250378917a29a506b22bd8aa876034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static ssize_t
 * wrap_readlinkat(int dirfd, const char *path, char *buf, size_t bufsiz) {
 *	ssize_t rc = -1;
 */
	rc = real_readlinkat(dirfd, path, buf, bufsiz);

	if (rc > 0) {
		rc = pseudo_dechroot(buf, rc);
	}

/*	return rc;
 * }
 */