aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fchdir.c
blob: 5289f4c5c8a182536fca68566a8f1b6f6a8c4c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * static int
 * wrap_fchdir(int dirfd) {
 *	int rc = -1;
 */

	rc = real_fchdir(dirfd);

	if (rc != -1) {
		pseudo_client_op(OP_CHDIR, 0, -1, dirfd, 0, 0);
	}

/*	return rc;
 * }
 */