summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-04-01 16:36:00 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-04-01 16:36:00 -0700
commit3d9a984069b7f8270713948aeccae96526006d7d (patch)
tree0c24e91119b3dcf68f9997aeb4a31bc8e81b6aef
parentd6d6789240929d938b9aabb187f46daed1741956 (diff)
downloadsyslinux-3d9a984069b7f8270713948aeccae96526006d7d.tar.gz
Remove bogus clobbering of the mask
Remove bogus clobbering of the DID mask, effectively making the option to set a mask for the DID unusable.
-rw-r--r--com32/modules/ethersel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/com32/modules/ethersel.c b/com32/modules/ethersel.c
index c3f99fe7..8ca6b473 100644
--- a/com32/modules/ethersel.c
+++ b/com32/modules/ethersel.c
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------- *
*
- * Copyright 2005 H. Peter Anvin - All Rights Reserved
+ * Copyright 2005-2007 H. Peter Anvin - All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -148,7 +148,6 @@ parse_config(const char *filename)
if ( looking_at(p, "did") ) {
p = get_did(p+3, &m->did, &m->did_mask);
- m->did_mask = 0xffffffff;
} else if ( looking_at(p, "sid") ) {
p = get_did(p+3, &m->sid, &m->sid_mask);
} else if ( looking_at(p, "rid") ) {