diff options
| author | Artyom Poptsov <poptsov.artyom@gmail.com> | 2014-03-23 19:59:43 +0400 |
|---|---|---|
| committer | Artyom Poptsov <poptsov.artyom@gmail.com> | 2014-03-23 20:02:43 +0400 |
| commit | 4098b74a22fc90e8a8e44bcea4b1916897c1bc19 (patch) | |
| tree | 428eaeff02ca8355bb9196da83bf958e297adb86 /tests | |
| parent | ssshd.scm.in (handle-req-auth): Handle password auth correctly. (diff) | |
| download | guile-ssh-4098b74a22fc90e8a8e44bcea4b1916897c1bc19.tar.gz | |
Replace `libguile-ssh' with `Guile-SSH' in commentaries.
* Makefile.am, am/Makefile.am, ssh/Makefile.am, ssh/auth.c,
ssh/auth.h, ssh/auth.scm, ssh/base64.c, ssh/base64.h,
ssh/channel-func.c, ssh/channel-func.h, ssh/channel-main.c,
ssh/channel-type.c, ssh/channel-type.h, ssh/channel.scm,
ssh/common.c, ssh/common.h, ssh/error.c, ssh/error.h,
ssh/key-func.c, ssh/key-func.h, ssh/key-main.c, ssh/key-type.c,
ssh/key-type.h, ssh/key.scm, ssh/message-func.c,
ssh/message-func.h, ssh/message-main.c, ssh/message-type.c,
ssh/message-type.h, ssh/message.scm, ssh/server-func.c,
ssh/server-func.h, ssh/server-main.c, ssh/server-type.c,
ssh/server-type.h, ssh/server.scm, ssh/session-func.c,
ssh/session-func.h, ssh/session-main.c, ssh/session-type.c,
ssh/session-type.h, ssh/session.scm, ssh/threads.c, ssh/threads.h,
ssh/version.c, ssh/version.scm, tests/Makefile.am,
tests/client-server.scm, tests/server-client.scm,
tests/server.scm, tests/session.scm, tests/sssh-ssshd.scm,
configure.ac: Replace `libguile-ssh' with `Guile-SSH' in
commentaries.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Makefile.am | 8 | ||||
| -rw-r--r-- | tests/client-server.scm | 8 | ||||
| -rw-r--r-- | tests/server-client.scm | 8 | ||||
| -rw-r--r-- | tests/server.scm | 8 | ||||
| -rw-r--r-- | tests/session.scm | 8 | ||||
| -rw-r--r-- | tests/sssh-ssshd.scm | 8 |
6 files changed, 24 insertions, 24 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 085518e..e674dc0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,20 +2,20 @@ ## ## Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ## -## This file is part of libguile-ssh. +## This file is part of Guile-SSH. ## -## libguile-ssh is free software: you can redistribute it and/or +## Guile-SSH 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 3 of the ## License, or (at your option) any later version. ## -## libguile-ssh is distributed in the hope that it will be useful, but +## Guile-SSH 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 -## along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. SCM_TESTS = \ server.scm \ diff --git a/tests/client-server.scm b/tests/client-server.scm index 93c6c3d..33e726d 100644 --- a/tests/client-server.scm +++ b/tests/client-server.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH 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 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 -;; along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 threads) diff --git a/tests/server-client.scm b/tests/server-client.scm index e9acdca..963ac6c 100644 --- a/tests/server-client.scm +++ b/tests/server-client.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH 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 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 -;; along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 threads) diff --git a/tests/server.scm b/tests/server.scm index 1cbfc59..a1bc7af 100644 --- a/tests/server.scm +++ b/tests/server.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH 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 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 -;; along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ssh server)) diff --git a/tests/session.scm b/tests/session.scm index 1b73e6c..5a62649 100644 --- a/tests/session.scm +++ b/tests/session.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH 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 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 -;; along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ssh session)) diff --git a/tests/sssh-ssshd.scm b/tests/sssh-ssshd.scm index 732874f..00bb040 100644 --- a/tests/sssh-ssshd.scm +++ b/tests/sssh-ssshd.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH 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 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 -;; along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 popen) |
