diff options
Diffstat (limited to 'src/test/copycluster.c')
-rw-r--r-- | src/test/copycluster.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/test/copycluster.c b/src/test/copycluster.c index 00384273..05961252 100644 --- a/src/test/copycluster.c +++ b/src/test/copycluster.c @@ -2,18 +2,9 @@ FILE: copycluster.c CREATOR: eric 15 January 2000 - (C) COPYRIGHT 2000 Eric Busboom <eric@civicknowledge.com> + SPDX-FileCopyrightText: 2000 Eric Busboom <eric@civicknowledge.com> - This library is free software; you can redistribute it and/or modify - it under the terms of either: - - The LGPL as published by the Free Software Foundation, version - 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html - - Or: - - The Mozilla Public License Version 2.0. You may obtain a copy of - the License at https://www.mozilla.org/MPL/ + SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0 The Original Code is eric. The Initial Developer of the Original Code is Eric Busboom @@ -103,7 +94,7 @@ int main(int c, char *argv[]) if (tostdout) { printf("--------------\n%s\n", icalcomponent_as_ical_string(itr)); } else { - (void)icalfileset_add_component(clusterout, icalcomponent_new_clone(itr)); + (void)icalfileset_add_component(clusterout, icalcomponent_clone(itr)); } count++; } |