diff options
| author | Glenn Morris | 2007-11-28 07:54:51 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-28 07:54:51 +0000 |
| commit | acb00fff9620801e4f05b762f20d39c6d356f8be (patch) | |
| tree | d95b6e2e9dae7b4e74cfb0b2fd0d81c34d05291c | |
| parent | 645a2b0df60f13db7d243f36596388ce85c133a0 (diff) | |
| download | emacs-acb00fff9620801e4f05b762f20d39c6d356f8be.tar.gz emacs-acb00fff9620801e4f05b762f20d39c6d356f8be.zip | |
Standardize license text.
Add 2007 to copyright years.
| -rw-r--r-- | lisp/gnus/hmac-def.el | 18 | ||||
| -rw-r--r-- | lisp/gnus/hmac-md5.el | 18 |
2 files changed, 18 insertions, 18 deletions
diff --git a/lisp/gnus/hmac-def.el b/lisp/gnus/hmac-def.el index 58491ec4f4a..bfff7282adf 100644 --- a/lisp/gnus/hmac-def.el +++ b/lisp/gnus/hmac-def.el | |||
| @@ -1,25 +1,25 @@ | |||
| 1 | ;;; hmac-def.el --- A macro for defining HMAC functions. | 1 | ;;; hmac-def.el --- A macro for defining HMAC functions. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2001 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999, 2001, 2007 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp> | 5 | ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp> |
| 6 | ;; Keywords: HMAC, RFC 2104 | 6 | ;; Keywords: HMAC, RFC 2104 |
| 7 | 7 | ||
| 8 | ;; This file is part of FLIM (Faithful Library about Internet Message). | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| 10 | ;; This program is free software; you can redistribute it and/or | 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 11 | ;; modify it under the terms of the GNU General Public License as | 11 | ;; it under the terms of the GNU General Public License as published by |
| 12 | ;; published by the Free Software Foundation; either version 3, or | 12 | ;; the Free Software Foundation; either version 3, or (at your option) |
| 13 | ;; (at your option) any later version. | 13 | ;; any later version. |
| 14 | 14 | ||
| 15 | ;; This program is distributed in the hope that it will be useful, | 15 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | ;; GNU General Public License for more details. | 18 | ;; GNU General Public License for more details. |
| 19 | 19 | ||
| 20 | ;; You should have received a copy of the GNU General Public License | 20 | ;; You should have received a copy of the GNU General Public License |
| 21 | ;; along with this program; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 22 | ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 | ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 23 | ;; Boston, MA 02110-1301, USA. | 23 | ;; Boston, MA 02110-1301, USA. |
| 24 | 24 | ||
| 25 | ;;; Commentary: | 25 | ;;; Commentary: |
diff --git a/lisp/gnus/hmac-md5.el b/lisp/gnus/hmac-md5.el index 21fc91992ad..186708446f0 100644 --- a/lisp/gnus/hmac-md5.el +++ b/lisp/gnus/hmac-md5.el | |||
| @@ -1,25 +1,25 @@ | |||
| 1 | ;;; hmac-md5.el --- Compute HMAC-MD5. | 1 | ;;; hmac-md5.el --- Compute HMAC-MD5. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2001 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999, 2001, 2007 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp> | 5 | ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp> |
| 6 | ;; Keywords: HMAC, RFC 2104, HMAC-MD5, MD5, KEYED-MD5, CRAM-MD5 | 6 | ;; Keywords: HMAC, RFC 2104, HMAC-MD5, MD5, KEYED-MD5, CRAM-MD5 |
| 7 | 7 | ||
| 8 | ;; This file is part of FLIM (Faithful Library about Internet Message). | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| 10 | ;; This program is free software; you can redistribute it and/or | 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 11 | ;; modify it under the terms of the GNU General Public License as | 11 | ;; it under the terms of the GNU General Public License as published by |
| 12 | ;; published by the Free Software Foundation; either version 3, or | 12 | ;; the Free Software Foundation; either version 3, or (at your option) |
| 13 | ;; (at your option) any later version. | 13 | ;; any later version. |
| 14 | 14 | ||
| 15 | ;; This program is distributed in the hope that it will be useful, | 15 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | ;; GNU General Public License for more details. | 18 | ;; GNU General Public License for more details. |
| 19 | 19 | ||
| 20 | ;; You should have received a copy of the GNU General Public License | 20 | ;; You should have received a copy of the GNU General Public License |
| 21 | ;; along with this program; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 22 | ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 | ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 23 | ;; Boston, MA 02110-1301, USA. | 23 | ;; Boston, MA 02110-1301, USA. |
| 24 | 24 | ||
| 25 | ;;; Commentary: | 25 | ;;; Commentary: |