From: Benjamin Kaduk Date: Sat, 25 Jul 2015 02:55:05 +0000 (-0400) Subject: Remove stray underscore from preprocessor conditional X-Git-Tag: upstream/1.6.17^2~61 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d863f67e0b50a9f6dfc8dc072c42d10a6fceaa9e;p=packages%2Fo%2Fopenafs.git Remove stray underscore from preprocessor conditional AFS_FBSD_110_ENV is not defined anywhere, so this conditional did not behave as expected. Introduced by me in commit e51d3b13c2b208efe72b584b532a28444633feff which was apparently not as well tested as it could have been. Change-Id: I57da8f69ba963b7602092bc524c6435059d8ae12 Reviewed-on: http://gerrit.openafs.org/11944 Tested-by: BuildBot Reviewed-by: Chas Williams <3chas3@gmail.com> Reviewed-by: Perry Ruiter Reviewed-by: Stephan Wiesand --- diff --git a/src/afs/FBSD/osi_vfsops.c b/src/afs/FBSD/osi_vfsops.c index 5d3cb7a2c..d88b76665 100644 --- a/src/afs/FBSD/osi_vfsops.c +++ b/src/afs/FBSD/osi_vfsops.c @@ -49,7 +49,7 @@ afs_init(struct vfsconf *vfc) int code; int offset = AFS_SYSCALL; #if defined(AFS_FBSD90_ENV) || defined(AFS_FBSD82_ENV) -# if defined(AFS_FBSD_110_ENV) +# if defined(AFS_FBSD110_ENV) code = syscall_register(&offset, &afs_sysent, &old_sysent, 0); # else code = syscall_register(&offset, &afs_sysent, &old_sysent);