X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/b4ececfc649ba051ccffe1029637f7262a59d8a0..c143276b1f46d1c4eb8bc08485558ef794c2d841:/conffile.c diff --git a/conffile.c b/conffile.c index 84f4960..bf4891e 100644 --- a/conffile.c +++ b/conffile.c @@ -1,4 +1,22 @@ /* conffile.c - process the configuration file */ +/* + * This file is part of secnet. + * See README for full list of copyright holders. + * + * secnet 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 d of the License, or + * (at your option) any later version. + * + * secnet 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 + * version 3 along with secnet; if not, see + * https://www.gnu.org/licenses/gpl.html. + */ /* #define DUMP_PARSE_TREE */ @@ -545,7 +563,7 @@ cstring_t *dict_keys(dict_t *dict) { atom_t *r, *j; struct entry *i; - r=safe_malloc(sizeof(*r)*(dict->size+1),"dict_keys"); + NEW_ARY(r,dict->size+1); for (i=dict->entries, j=r; i; i=i->next, j++) { *j=i->key; }