Packets: Fix stupid comment bug
[senf.git] / Packets / IntParser.hh
index fb2a0fc..fe3de03 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
 //
 // 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
@@ -426,8 +426,8 @@ namespace senf {
 
         value_type value() const { return i()[Bit/8] & (1<<(7-(Bit%8))); }
         void value(value_type v) {
-            if (v) i()[0] |= 1<<(7-(Bit%8));
-            else   i()[0] &= ~(1<<(7-(Bit%8)));
+            if (v) i()[Bit/8] |= 1<<(7-(Bit%8));
+            else   i()[Bit/8] &= ~(1<<(7-(Bit%8)));
         }
         FlagParser const & operator= (value_type other) { value(other); return *this; }
     };