ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/channel_mode.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/channel_mode.c (file contents):
Revision 3681 by michael, Thu May 29 11:57:44 2014 UTC vs.
Revision 3682 by michael, Thu May 29 15:48:13 2014 UTC

# Line 307 | Line 307 | channel_modes(struct Channel *chptr, str
307      *mbuf++ = 'l';
308  
309      if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr))
310 <      pbuf += sprintf(pbuf, "%d ", chptr->mode.limit);
310 >      pbuf += sprintf(pbuf, " %d", chptr->mode.limit);
311    }
312  
313    if (chptr->mode.key[0])
# Line 315 | Line 315 | channel_modes(struct Channel *chptr, str
315      *mbuf++ = 'k';
316  
317      if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr))
318 <      sprintf(pbuf, "%s ", chptr->mode.key);
318 >      sprintf(pbuf, " %s", chptr->mode.key);
319    }
320  
321    *mbuf = '\0';

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines