summaryrefslogtreecommitdiff
path: root/openbsd-compat
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-11-01 18:17:42 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-11-01 18:27:37 +1100
commitb56dbfd9d967e5b6ce7be9f81f206112e19e1030 (patch)
tree8abe549697632435b80e0533d8f35ca61a58f84e /openbsd-compat
parent59ccb56f15e5e530e7c1b5a0b361749d8c6217d5 (diff)
Add missing bracket in realpath macro.
Diffstat (limited to 'openbsd-compat')
-rw-r--r--openbsd-compat/bsd-misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index 429ade047..7bf7b048a 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -183,7 +183,7 @@ struct tm *localtime_r(const time_t *, struct tm *);
183#endif 183#endif
184 184
185#ifndef HAVE_REALPATH 185#ifndef HAVE_REALPATH
186#define realpath(x, y) (sftp_realpath((x), (y)) 186#define realpath(x, y) (sftp_realpath((x), (y)))
187#endif 187#endif
188 188
189#endif /* _BSD_MISC_H */ 189#endif /* _BSD_MISC_H */