X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FIntParser.hh;h=fe3de037975e88c7504e225628b54b2732377431;hb=2da517bbcdb2af10d2322fc762ca27774b53b435;hp=098b218fd6defa613f234ee4ef2223bb2943eacb;hpb=f73fa16ed5abdce272ac77f8b8b9ef2b9922c266;p=senf.git diff --git a/Packets/IntParser.hh b/Packets/IntParser.hh index 098b218..fe3de03 100644 --- a/Packets/IntParser.hh +++ b/Packets/IntParser.hh @@ -1,8 +1,8 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify @@ -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; } };