summaryrefslogtreecommitdiff
path: root/src/s_user.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-15 19:17:25 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-15 19:17:25 +0000
commitce95a3cb27a9e0fe669a81e778bf8166dba47e43 (patch)
treea37a9f806797fcd21e616c6e41293d5456ff37e8 /src/s_user.c
parent625717a9fb3815adc180680339719b5ce8174916 (diff)
- Implement CERTFP
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2237 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/s_user.c')
-rw-r--r--src/s_user.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/s_user.c b/src/s_user.c
index c05459d..ebbeecd 100644
--- a/src/s_user.c
+++ b/src/s_user.c
@@ -623,6 +623,9 @@ introduce_client(struct Client *source_p)
ubuf, source_p->username, source_p->host,
source_p->servptr->name, source_p->info);
}
+
+ if (!EmptyString(source_p->certfp))
+ sendto_one(server, ":%s CERTFP %s", ID(source_p), source_p->certfp);
}
}