X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fregex%2Fregex_test_lib.c;h=d25799ea42819f35f12d0a14221a6f3e31be31fc;hb=ec50a665dc884f7997419d0351ae8ade9c1aeabe;hp=814380246523af01255d3b75493257d4476e04e9;hpb=2df817deaf2bc73713a9a6e588cbd298170e847b;p=oweals%2Fgnunet.git diff --git a/src/regex/regex_test_lib.c b/src/regex/regex_test_lib.c index 814380246..d25799ea4 100644 --- a/src/regex/regex_test_lib.c +++ b/src/regex/regex_test_lib.c @@ -2,20 +2,18 @@ * This file is part of GNUnet * Copyright (C) 2012-2017 GNUnet e.V. * - * GNUnet is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published - * by the Free Software Foundation; either version 3, or (at your - * option) any later version. + * GNUnet is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. * * GNUnet is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNUnet; see the file COPYING. If not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. + * 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 . */ /** * @file src/regex/regex_test_lib.c @@ -172,9 +170,9 @@ move_children (struct RegexCombineCtx *dst, size_t array_size; array_size = sizeof(struct RegexCombineCtx *) * src->size; - memcpy (dst->children, - src->children, - array_size); + GNUNET_memcpy (dst->children, + src->children, + array_size); for (unsigned int i = 0; i < src->size; i++) { src->children[i] = NULL; @@ -364,7 +362,9 @@ regex_add_multiple (struct RegexCombineCtx *ctx, newctx = new_regex_ctx(ctx->size); newctx->s = GNUNET_strdup (tmp); if (children != NULL) - memcpy (newctx->children, children, sizeof (*children) * ctx->size); + GNUNET_memcpy (newctx->children, + children, + sizeof (*children) * ctx->size); ctx->children[c2i(tmp[0], ctx->size)] = newctx; } }