summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.h
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/bsd-misc.h
parent59ccb56f15e5e530e7c1b5a0b361749d8c6217d5 (diff)
downloadopenssh-git-b56dbfd9d967e5b6ce7be9f81f206112e19e1030.tar.gz
Add missing bracket in realpath macro.
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-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 429ade04..7bf7b048 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 *);
#endif
#ifndef HAVE_REALPATH
-#define realpath(x, y) (sftp_realpath((x), (y))
+#define realpath(x, y) (sftp_realpath((x), (y)))
#endif
#endif /* _BSD_MISC_H */