summaryrefslogtreecommitdiff
path: root/test/testbuckets.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testbuckets.c')
-rw-r--r--test/testbuckets.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testbuckets.c b/test/testbuckets.c
index 2b789f1a0..3957f0e2d 100644
--- a/test/testbuckets.c
+++ b/test/testbuckets.c
@@ -100,12 +100,12 @@ static void flatten_match(abts_case *tc, const char *ctx,
apr_size_t len = elen;
char msg[200];
- sprintf(msg, "%s: flatten brigade", ctx);
+ apr_snprintf(msg, sizeof msg, "%s: flatten brigade", ctx);
APR_ASSERT_SUCCESS(tc, msg, apr_brigade_flatten(bb, buf, &len));
- sprintf(msg, "%s: length match (%ld not %ld)", ctx,
- (long)len, (long)elen);
+ apr_snprintf(msg, sizeof msg, "%s: length match (%ld not %ld)", ctx,
+ (long)len, (long)elen);
ABTS_ASSERT(tc, msg, len == elen);
- sprintf(msg, "%s: result match", ctx);
+ apr_snprintf(msg, sizeof msg, "%s: result match", ctx);
ABTS_STR_NEQUAL(tc, expect, buf, len);
free(buf);
}