26 lines
759 B
Diff
26 lines
759 B
Diff
|
|
From be8fcc621cfcec59a521f9a2929c98a89e5e9136 Mon Sep 17 00:00:00 2001
|
||
|
|
From: hexiaowen <hexiaowen@huawei.com>
|
||
|
|
Date: Mon, 15 Jul 2019 21:25:42 +0800
|
||
|
|
Subject: [PATCH] openssh: fix typo that prevented detection of Linux VRF
|
||
|
|
|
||
|
|
---
|
||
|
|
configure.ac | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/configure.ac b/configure.ac
|
||
|
|
index ed7a6bb..671819d 100644
|
||
|
|
--- a/configure.ac
|
||
|
|
+++ b/configure.ac
|
||
|
|
@@ -849,7 +849,7 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
|
||
|
|
AC_DEFINE([SYS_RDOMAIN_LINUX], [1],
|
||
|
|
[Support routing domains using Linux VRF]), [], [
|
||
|
|
#ifdef HAVE_SYS_TYPES_H
|
||
|
|
-# include <sys/types.H>
|
||
|
|
+# include <sys/types.h>
|
||
|
|
#endif
|
||
|
|
])
|
||
|
|
AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [],
|
||
|
|
--
|
||
|
|
1.8.3.1
|
||
|
|
|