diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-08-31 14:02:41 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-08-31 14:02:41 +0200 |
commit | a1839f3c61af66814a8c52b9ad28e59aab4ede0e (patch) | |
tree | 566deff8bd8be209ce04e8cd3fc494899d83afe1 | |
parent | f9f2e280ea4fa1af19d8ce9e54abeb495694c0d5 (diff) |
KRT: Fix trivial error
-rw-r--r-- | sysdep/unix/krt.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/krt.Y b/sysdep/unix/krt.Y index 2ef6e3c4..6fe39fa9 100644 --- a/sysdep/unix/krt.Y +++ b/sysdep/unix/krt.Y @@ -56,7 +56,7 @@ kern_item: | GRACEFUL RESTART bool { THIS_KRT->graceful_restart = $3; } | MERGE PATHS bool kern_mp_limit { THIS_KRT->merge_paths = $3 ? $4 : 0; -#ifndef KRT_ALLOW_LEARN +#ifndef KRT_ALLOW_MERGE_PATHS if ($3) cf_error("Path merging not supported on this platform"); #endif |