RECLAIM/OIDC: code cleanup
[oweals/gnunet.git] / src / vpn / gnunet-service-vpn.c
index 646429b25116515f5b851d989bed98b8856a7ceb..91bc13fd82165c0813d51accd2c9096a7ab06a6b 100644 (file)
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      Affero General Public License for more details.
+    
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 
 /**
@@ -2432,12 +2437,10 @@ allocate_v6_address (struct in6_addr *v6)
   while ( (GNUNET_YES ==
           GNUNET_CONTAINER_multihashmap_contains (destination_map,
                                                   &key)) ||
-         (0 == memcmp (v6,
-                       &addr,
-                       sizeof (struct in6_addr))) ||
-         (0 == memcmp (v6,
-                       &mask,
-                       sizeof (struct in6_addr))) );
+         (0 == GNUNET_memcmp (v6,
+                       &addr)) ||
+         (0 == GNUNET_memcmp (v6,
+                       &mask)) );
   return GNUNET_OK;
 }