X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_gline.c;h=2e5975409fb618f10835ae16bb7118ca3975893d;hb=7d05062a94eb0c6e7434d4d072e03f389492afda;hp=13fbd9052b20d521d6891dd37a8b11ea7793b029;hpb=e366e6a70e0710686a255ec1689cacc379eddd9f;p=ircu2.10.12-pk.git diff --git a/ircd/m_gline.c b/ircd/m_gline.c index 13fbd90..2e59754 100644 --- a/ircd/m_gline.c +++ b/ircd/m_gline.c @@ -241,10 +241,10 @@ ms_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[]) assert(!IsMe(acptr)); Debug((DEBUG_DEBUG, "I am forwarding a local G-line to a remote server; " - "target %s, mask %s, operforce %s, action %s, expire %Tu, " + "target %s, mask %s, operforce %s, action %c, expire %Tu, " "lastmod %Tu, reason: %s", target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO", - action == GLINE_ACTIVATE ? "+" : "-", expire_off, CurrentTime, + action == GLINE_ACTIVATE ? '+' : '-', expire_off, CurrentTime, reason)); sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s %Tu %Tu :%s", @@ -514,14 +514,14 @@ mo_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[]) return send_reply(sptr, ERR_NOPRIVILEGES); Debug((DEBUG_DEBUG, "I am forwarding a local G-line to a remote " - "server; target %s, mask %s, operforce %s, action %s, " + "server; target %s, mask %s, operforce %s, action %c, " "expire %Tu, reason %s", target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO", - action == GLINE_ACTIVATE ? "+" : "-", expire_off, reason)); + action == GLINE_ACTIVATE ? '+' : '-', expire_off, reason)); sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s %Tu %Tu :%s", acptr, flags & GLINE_OPERFORCE ? "!" : "", - action == GLINE_ACTIVATE ? "+" : "-", mask, expire_off, + action == GLINE_ACTIVATE ? '+' : '-', mask, expire_off, CurrentTime, reason); return 0; /* all done */