summaryrefslogtreecommitdiff
path: root/lib/ZSubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ZSubs.c')
-rw-r--r--lib/ZSubs.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/ZSubs.c b/lib/ZSubs.c
index a3d0b78..e0d39ee 100644
--- a/lib/ZSubs.c
+++ b/lib/ZSubs.c
@@ -85,8 +85,11 @@ ZSubscriptions(register ZSubscription_t *sublist,
char **list;
char *recip;
int hdrlen;
- int size_avail = Z_MAXPKTLEN-Z_FRAGFUDGE; /* space avail for data,
- adjusted below */
+ /* Space available for data, adjusted below. Take off Z_FRAGFUDGE twice.
+ The first is to account for Z_SendFragmentedNotice's space. The second
+ to account for hdrlen not being constant. Zcode escapes bytes 0x00 and
+ 0xFF, so some bytes are encoded as two bytes. */
+ int size_avail = Z_MAXPKTLEN-Z_FRAGFUDGE-Z_FRAGFUDGE;
int size, start, numok;
/* nitems = 0 means cancel all subscriptions; still need to allocate a */