diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-10-10 21:56:20 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-10-10 21:56:20 +0200 |
commit | 0719a1600ade8d1d0f5031778abf850a8b520efc (patch) | |
tree | f3c7d4fa17e1bdb8f63d65ea99cd9a458dcd92b4 /hurd | |
parent | 3319f7f6a238cf88b9f46849e7be84d3c96376d6 (diff) |
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.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/auth_request.defs | 2 | ||||
-rw-r--r-- | hurd/io_request.defs | 2 | ||||
-rw-r--r-- | 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 a1f9e271..54c156c0 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 0d5e36dd..b439a5cd 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 a8bf820c..20e0ee14 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> |