# | Line 72 | Line 72 | resv_handle(struct Client *source_p, con | |
---|---|---|
72 | } | |
73 | } | |
74 | ||
75 | < | struct ResvItem *resv = resv_make(mask, reason, NULL); |
76 | < | if (!resv) |
75 | > | struct ResvItem *resv; |
76 | > | if ((resv = resv_make(mask, reason, NULL)) == NULL) |
77 | { | |
78 | if (IsClient(source_p)) | |
79 | sendto_one_notice(source_p, &me, ":A RESV has already been placed on: %s", mask); |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |