Skip to content

Commit

Permalink
Fix test for Option "IgnoreABI".
Browse files Browse the repository at this point in the history
This option has plenty of potential for wasting the time of bug triagers
without pretending it's always on.
(cherry picked from becbda6 commit)
  • Loading branch information
Michel Dänzer committed Oct 25, 2006
1 parent 6e73c87 commit d12d083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/xfree86/common/xf86Config.c
Expand Up @@ -907,7 +907,7 @@ configServerFlags(XF86ConfFlagsPtr flagsconf, XF86OptionPtr layoutopts)
xf86GetOptValBool(FlagOptions, FLAG_ALLOW_CLOSEDOWN_GRABS,
&(xf86Info.grabInfo.allowClosedown));
xf86GetOptValBool(FlagOptions, FLAG_IGNORE_ABI, &xf86Info.ignoreABI);
if (&xf86Info.ignoreABI) {
if (xf86Info.ignoreABI) {
xf86Msg(X_CONFIG, "Ignoring ABI Version\n");
}

Expand Down

0 comments on commit d12d083

Please sign in to comment.