[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[hurd] 22/25: Fix some RPC request headers #ifdef guards
From: |
Samuel Thibault |
Subject: |
[hurd] 22/25: Fix some RPC request headers #ifdef guards |
Date: |
Mon, 24 Oct 2016 00:16:45 +0000 |
This is an automated email from the git hooks/post-receive script.
sthibault pushed a commit to branch upstream
in repository hurd.
commit 0719a1600ade8d1d0f5031778abf850a8b520efc
Author: Samuel Thibault <address@hidden>
Date: Mon Oct 10 21:56:20 2016 +0200
Fix some RPC request headers #ifdef guards
by fixing the subsystem name into containing _request.
* hurd/auth_request.defs: Set subsystem name to auth_request.
* hurd/io_request.defs: Set subsystem name to io_request.
* hurd/process_request.defs: Set subsystem name to process_request.
---
hurd/auth_request.defs | 2 +-
hurd/io_request.defs | 2 +-
hurd/process_request.defs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/hurd/auth_request.defs b/hurd/auth_request.defs
index a1f9e27..54c156c 100644
--- a/hurd/auth_request.defs
+++ b/hurd/auth_request.defs
@@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public
License
along with the GNU Hurd; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-subsystem auth_reply 25000; /* must match auth.defs */
+subsystem auth_request 25000; /* must match auth.defs */
#include <hurd/hurd_types.defs>
diff --git a/hurd/io_request.defs b/hurd/io_request.defs
index 0d5e36d..b439a5c 100644
--- a/hurd/io_request.defs
+++ b/hurd/io_request.defs
@@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public
License
along with the GNU Hurd; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-subsystem io 21000;
+subsystem io_request 21000;
/* These functions are user-side stubs for the functions in io.defs;
all the comments there apply exactly to here. */
diff --git a/hurd/process_request.defs b/hurd/process_request.defs
index a8bf820..20e0ee1 100644
--- a/hurd/process_request.defs
+++ b/hurd/process_request.defs
@@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public
License
along with the GNU Hurd; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-subsystem process 24000;
+subsystem process_request 24000;
#include <hurd/hurd_types.defs>
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-hurd/hurd.git
- [hurd] 09/25: Fix installing runsystem.hurd, (continued)
- [hurd] 09/25: Fix installing runsystem.hurd, Samuel Thibault, 2016/10/23
- [hurd] 12/25: fakeroot: set FAKED_MODE, Samuel Thibault, 2016/10/23
- [hurd] 14/25: ext2fs: Disable option to specify alternate superblock., Samuel Thibault, 2016/10/23
- [hurd] 17/25: trans/crash: Fix setting core file template at runtime., Samuel Thibault, 2016/10/23
- [hurd] 21/25: fshelp: Fix fetching the control port., Samuel Thibault, 2016/10/23
- [hurd] 06/25: startup: Fix looping over runsystem, Samuel Thibault, 2016/10/23
- [hurd] 16/25: trans/crash: Use empty core file templates to disable the feature., Samuel Thibault, 2016/10/23
- [hurd] 13/25: libdiskfs: Fix short-circuiting translators., Samuel Thibault, 2016/10/23
- [hurd] 11/25: random: Hash continuous areas in the csprng pool., Samuel Thibault, 2016/10/23
- [hurd] 23/25: procfs: Gracefully degrade meminfo., Samuel Thibault, 2016/10/23
- [hurd] 22/25: Fix some RPC request headers #ifdef guards,
Samuel Thibault <=