From b4c2ea2e37a326e120042f7598d81298cf6f4243 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Tue, 23 Sep 1997 15:27:33 +0000 Subject: Remove an unneeded ampersand which was generating compiler type warnings. --- server/dispatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/dispatch.c') 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); -- cgit v1.2.3