Linux autoconf typo

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>
This commit is contained in:
Marc Dionne 2010-04-27 18:25:15 -04:00 committed by Derrick Brashear
parent 6c53cd7ad3
commit d88b0b9a7b

View 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])
])