Linux autoconf typo
authorMarc Dionne <marc.c.dionne@gmail.com>
Tue, 27 Apr 2010 22:25:15 +0000 (18:25 -0400)
committerDerrick Brashear <shadow@dementia.org>
Tue, 27 Apr 2010 23:41:03 +0000 (16:41 -0700)
The test for the new export ops has a typo which
makes the test fail where it should succeed: eops -> _eops

Change-Id: I97dd0707b911c51f6394ada426a98e06a83ad35e
Reviewed-on: http://gerrit.openafs.org/1867
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>

src/cf/linux-test4.m4

index fb66836..8b4fd94 100644 (file)
@@ -478,7 +478,7 @@ AC_DEFUN([LINUX_NEW_EXPORT_OPS], [
                       [ac_cv_linux_new_export_ops],
                       [#include <linux/exportfs.h>],
                       [struct export_operations _eops;
-                       eops.fh_to_parent(NULL, NULL, 0, 0);],
+                       _eops.fh_to_parent(NULL, NULL, 0, 0);],
                       [NEW_EXPORT_OPS],
                       [define if kernel uses new export ops])
 ])