summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2006-01-04 08:56:00 +0000
committerSebastien Helleu <flashcode@flashtux.org>2006-01-04 08:56:00 +0000
commit4d62625894d5c6f3859f4b5589011bf1103962c8 (patch)
tree425202431698fb7db59d2e2ec5d61583edd0c4f8 /src/irc
parentd875b521246b8762576fb3ac2bccbba9adfc4f81 (diff)
downloadweechat-4d62625894d5c6f3859f4b5589011bf1103962c8.zip
New year in copyright, FSF address changed
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/Makefile.am4
-rw-r--r--src/irc/irc-channel.c4
-rw-r--r--src/irc/irc-commands.c4
-rw-r--r--src/irc/irc-dcc.c4
-rw-r--r--src/irc/irc-display.c4
-rw-r--r--src/irc/irc-ignore.c4
-rw-r--r--src/irc/irc-nick.c4
-rw-r--r--src/irc/irc-recv.c4
-rw-r--r--src/irc/irc-send.c4
-rw-r--r--src/irc/irc-server.c4
-rw-r--r--src/irc/irc.h4
11 files changed, 22 insertions, 22 deletions
diff --git a/src/irc/Makefile.am b/src/irc/Makefile.am
index 21912f7d9..8853e80fb 100644
--- a/src/irc/Makefile.am
+++ b/src/irc/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2005 FlashCode <flashcode@flashtux.org>
+# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -12,7 +12,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(GNUTLS_CFLAGS)
diff --git a/src/irc/irc-channel.c b/src/irc/irc-channel.c
index 6d2baa925..7fb18b02c 100644
--- a/src/irc/irc-channel.c
+++ b/src/irc/irc-channel.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-channel.c: manages a chat (channel or private chat) */
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c
index 342d32f11..060498f97 100644
--- a/src/irc/irc-commands.c
+++ b/src/irc/irc-commands.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-commands.c: implementation of IRC commands, according to
diff --git a/src/irc/irc-dcc.c b/src/irc/irc-dcc.c
index 422e4c85a..6bbfe8a48 100644
--- a/src/irc/irc-dcc.c
+++ b/src/irc/irc-dcc.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-dcc.c: DCC communications (files & chat) */
diff --git a/src/irc/irc-display.c b/src/irc/irc-display.c
index 05332ae63..c4354805f 100644
--- a/src/irc/irc-display.c
+++ b/src/irc/irc-display.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-display.c: display functions for IRC */
diff --git a/src/irc/irc-ignore.c b/src/irc/irc-ignore.c
index d81453a8d..c131c38b8 100644
--- a/src/irc/irc-ignore.c
+++ b/src/irc/irc-ignore.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-ignore.c: manages IRC ignore list */
diff --git a/src/irc/irc-nick.c b/src/irc/irc-nick.c
index ae6dbc3bc..28612b3ed 100644
--- a/src/irc/irc-nick.c
+++ b/src/irc/irc-nick.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-nick.c: manages nick list for channels */
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c
index bb89d1d71..d0af719c5 100644
--- a/src/irc/irc-recv.c
+++ b/src/irc/irc-recv.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-recv.c: implementation of IRC commands (server to client),
diff --git a/src/irc/irc-send.c b/src/irc/irc-send.c
index 84da65271..f6b6ce4b8 100644
--- a/src/irc/irc-send.c
+++ b/src/irc/irc-send.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-send.c: implementation of IRC commands (client to server),
diff --git a/src/irc/irc-server.c b/src/irc/irc-server.c
index 33cf7afd0..1f5d4dda3 100644
--- a/src/irc/irc-server.c
+++ b/src/irc/irc-server.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* irc-server.c: connection and communication with IRC server */
diff --git a/src/irc/irc.h b/src/irc/irc.h
index 0b736fd47..26c9c79fb 100644
--- a/src/irc/irc.h
+++ b/src/irc/irc.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
+ * Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org>
* See README for License detail, AUTHORS for developers list.
*
* This program is free software; you can redistribute it and/or modify
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/