summaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-07-15 19:21:30 +0000
committerRoger Dingledine <arma@torproject.org>2006-07-15 19:21:30 +0000
commit3d79eb52abf20c64e02dfae1c993d5c83ddf57da (patch)
tree1a40ec0860c1fe2b72f6e85762ed9374bb0c9670 /src/or/rendservice.c
parent0ada963ef6fd10067630b8c9661372f419ab44e9 (diff)
downloadtor-3d79eb52abf20c64e02dfae1c993d5c83ddf57da.tar.gz
tor-3d79eb52abf20c64e02dfae1c993d5c83ddf57da.zip
stick to nick's nul/null convention
svn:r6763
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index e6b2ca8cb4..ce3ca478c7 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -518,7 +518,7 @@ rend_service_introduce(circuit_t *circuit, const char *request,
ptr=memchr(rp_nickname,0,nickname_field_len);
if (!ptr || ptr == rp_nickname) {
log_warn(LD_PROTOCOL,
- "Couldn't find a null-padded nickname in INTRODUCE2 cell.");
+ "Couldn't find a nul-padded nickname in INTRODUCE2 cell.");
return -1;
}
if ((version == 0 && !is_legal_nickname(rp_nickname)) ||