blob: 0e2ee80506ecb5e34f28b70ab9295ee06f4c017a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-bf,v 1.1 2006/10/21 11:53:13 agc Exp $
--- ./agent/agentrex.C.orig 2002-11-27 18:51:05.000000000 +0000
+++ ./agent/agentrex.C
@@ -68,7 +68,7 @@ public:
virtual void
newfd (svccb *sbp)
{
- rexcb_newfd_arg *argp = sbp->template getarg<rexcb_newfd_arg> ();
+ rexcb_newfd_arg *argp = sbp->getarg<rexcb_newfd_arg> ();
waitnewfd = false;
@@ -98,7 +98,7 @@ public:
}
virtual void data (svccb *sbp) {
- rex_payload *argp = sbp->template getarg<rex_payload> ();
+ rex_payload *argp = sbp->getarg<rex_payload> ();
if (waitnewfd && !argp->data.size ()) {
warn ("agent forward channel failure: EOF from suidconnect agent\n");
warn ("NOTE: sfscd must be running on the remote machine for agent "
|