summaryrefslogtreecommitdiff
path: root/server/dispatch.c
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1997-09-23 15:27:33 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1997-09-23 15:27:33 +0000
commitb4c2ea2e37a326e120042f7598d81298cf6f4243 (patch)
tree271ed3536e469c866959bacd98fa0fd6cff990dc /server/dispatch.c
parent9618702942cf4cc48f2cd6b61512679283325297 (diff)
Remove an unneeded ampersand which was generating compiler type warnings.
Diffstat (limited to 'server/dispatch.c')
-rw-r--r--server/dispatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/dispatch.c b/server/dispatch.c
index fed2336..084a1bc 100644
--- a/server/dispatch.c
+++ b/server/dispatch.c
@@ -426,7 +426,7 @@ sendit(notice, auth, who, external)
dest.recip = make_string("", 0);
} else {
strncpy(recipbuf, notice->z_recipient, sizeof(recipbuf));
- recipp = strrchr(&recipbuf, '@');
+ recipp = strrchr(recipbuf, '@');
if (recipp)
sprintf(recipp + 1, "%s", realm_expand_realm(recipp + 1));
dest.recip = make_string(recipbuf, 0);