From: Darren Tucker Date: Fri, 1 Nov 2019 07:17:42 +0000 (+1100) Subject: Add missing bracket in realpath macro. X-Git-Tag: V_8_2_P1~358 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b56dbfd9d967e5b6ce7be9f81f206112e19e1030;p=thirdparty%2Fopenssh-portable.git Add missing bracket in realpath macro. --- 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 *); #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 */