summaryrefslogtreecommitdiff
path: root/test/lock.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/lock.c')
-rw-r--r--test/lock.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/lock.c b/test/lock.c
index 1c2f081..78f1d63 100644
--- a/test/lock.c
+++ b/test/lock.c
@@ -73,11 +73,13 @@ static char *lock_response(enum ne_lock_scope scope,
const char *token_href)
{
static char buf[BUFSIZ];
- sprintf(buf,
- "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
- "<D:prop xmlns:D=\"DAV:\">"
- "<D:lockdiscovery>%s</D:lockdiscovery></D:prop>\n",
- activelock(scope, depth, owner, timeout, token_href));
+
+ ne_snprintf(buf, sizeof buf,
+ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
+ "<D:prop xmlns:D=\"DAV:\">"
+ "<D:lockdiscovery>%s</D:lockdiscovery></D:prop>\n",
+ activelock(scope, depth, owner, timeout, token_href));
+
return buf;
}