summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2015-10-14 08:25:55 +1100
committerDamien Miller <djm@mindrot.org>2015-10-14 08:25:55 +1100
commite929a43f957dbd1254aca2aaf85c8c00cbfc25f4 (patch)
tree5b6b1260ef3154a3becf0c66d6b68d674d74a85e
parent5225db68e58a1048cb17f0e36e0d33bc4a8fc410 (diff)
upstream commit
revision 1.16 date: 2013/04/05 12:59:54; author: kurt; state: Exp; lines: +3 -1; - Add comments regarding copies of these files also in libexec/ld.so okay guenther@
-rw-r--r--openbsd-compat/realpath.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbsd-compat/realpath.c b/openbsd-compat/realpath.c
index f2083e0f6..a954b1b7a 100644
--- a/openbsd-compat/realpath.c
+++ b/openbsd-compat/realpath.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: realpath.c,v 1.15 2012/09/13 15:39:05 deraadt Exp $ */ 1/* $OpenBSD: realpath.c,v 1.16 2013/04/05 12:59:54 kurt Exp $ */
2/* 2/*
3 * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> 3 * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
4 * 4 *
@@ -43,6 +43,8 @@
43#include <string.h> 43#include <string.h>
44#include <unistd.h> 44#include <unistd.h>
45 45
46/* A slightly modified copy of this file exists in libexec/ld.so */
47
46/* 48/*
47 * char *realpath(const char *path, char resolved[PATH_MAX]); 49 * char *realpath(const char *path, char resolved[PATH_MAX]);
48 * 50 *