From 3c277aa17b845eae327751b910e2570821b657da Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 23 Mar 2012 13:14:38 -0400 Subject: [PATCH] Added license declarations to some files that were missing it --- citadel/textclient/messages.h | 12 ++++++++++++ citadel/textclient/rooms.h | 12 ++++++++++++ citadel/textclient/routines.c | 10 ++++++++++ citadel/textclient/routines.h | 12 ++++++++++++ citadel/textclient/routines2.c | 10 ++++++++++ citadel/textclient/routines2.h | 11 +++++++++++ citadel/textclient/screen.c | 2 +- citadel/textclient/screen.h | 15 +++++++++++++-- citadel/textclient/tuiconfig.h | 12 ++++++++++++ 9 files changed, 93 insertions(+), 3 deletions(-) diff --git a/citadel/textclient/messages.h b/citadel/textclient/messages.h index a624db5ab..e959acddd 100644 --- a/citadel/textclient/messages.h +++ b/citadel/textclient/messages.h @@ -1,3 +1,15 @@ +/* + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ + #define MAXURLS 50 /* Max embedded URL's per message */ extern int num_urls; diff --git a/citadel/textclient/rooms.h b/citadel/textclient/rooms.h index e3e046246..71edc800f 100644 --- a/citadel/textclient/rooms.h +++ b/citadel/textclient/rooms.h @@ -1,3 +1,15 @@ +/* + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ + void listzrooms(CtdlIPC *ipc); void readinfo(CtdlIPC *ipc); void forget(CtdlIPC *ipc); diff --git a/citadel/textclient/routines.c b/citadel/textclient/routines.c index 6d8018e34..f7261ee2d 100644 --- a/citadel/textclient/routines.c +++ b/citadel/textclient/routines.c @@ -1,5 +1,15 @@ /* * Client-side support functions. + * + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. */ #include "sysdep.h" diff --git a/citadel/textclient/routines.h b/citadel/textclient/routines.h index 3ecc03d7e..499400a79 100644 --- a/citadel/textclient/routines.h +++ b/citadel/textclient/routines.h @@ -1,3 +1,15 @@ +/* + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ + void edituser(CtdlIPC *ipc, int cmd); void interr(int errnum); int struncmp(char *lstr, char *rstr, int len); diff --git a/citadel/textclient/routines2.c b/citadel/textclient/routines2.c index 7f5db8e45..afe38dbb9 100644 --- a/citadel/textclient/routines2.c +++ b/citadel/textclient/routines2.c @@ -1,6 +1,16 @@ /* * More client-side support functions. * Unlike routines.c, some of these DO use global variables. + * + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. */ #include diff --git a/citadel/textclient/routines2.h b/citadel/textclient/routines2.h index 6187b0117..6ee959942 100644 --- a/citadel/textclient/routines2.h +++ b/citadel/textclient/routines2.h @@ -1,3 +1,14 @@ +/* + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ void updatels(CtdlIPC *ipc); void updatelsa(CtdlIPC *ipc); void movefile(CtdlIPC *ipc); diff --git a/citadel/textclient/screen.c b/citadel/textclient/screen.c index 11d047c6c..6bcc4b5f8 100644 --- a/citadel/textclient/screen.c +++ b/citadel/textclient/screen.c @@ -1,7 +1,7 @@ /* * Screen output handling * - * Copyright (c) 1987-2011 by the citadel.org team + * Copyright (c) 1987-2012 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. diff --git a/citadel/textclient/screen.h b/citadel/textclient/screen.h index 825a550a4..8e0579646 100644 --- a/citadel/textclient/screen.h +++ b/citadel/textclient/screen.h @@ -1,5 +1,16 @@ - -/* client code may need the ERR define: */ +/* + * client code may need the ERR define + * + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ void screen_new(void); int scr_printf(char *fmt, ...); diff --git a/citadel/textclient/tuiconfig.h b/citadel/textclient/tuiconfig.h index fd19e3553..7e65bc4b6 100644 --- a/citadel/textclient/tuiconfig.h +++ b/citadel/textclient/tuiconfig.h @@ -1,3 +1,15 @@ +/* + * Copyright (c) 1987-2012 by the citadel.org team + * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. + * + * This program 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. + */ + void do_internet_configuration(CtdlIPC *ipc); void do_ignet_configuration(CtdlIPC *ipc); void network_config_management(CtdlIPC *ipc, char *entrytype, char *comment); -- 2.30.2