aboutsummaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-02 23:38:26 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-02 23:38:26 +0000
commita8d805e292142b2ba094c5066c59291953ae93ab (patch)
tree60b7b8f9da0efbeef44584ef7e1eb94414eb6d11 /src/or/routerlist.c
parente8345bfced697f96fbb885298e464760988d71e4 (diff)
downloadtor-a8d805e292142b2ba094c5066c59291953ae93ab.tar
tor-a8d805e292142b2ba094c5066c59291953ae93ab.tar.gz
break out circ->rend_service
(this breaks the compile; must fix things) let alice react when she learns a new rendezvous descriptor let alice launch intro and rend circuits and mark them with her query svn:r1446
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r--src/or/routerlist.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 048dc4947..711cf8d59 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -196,6 +196,9 @@ void add_nickname_list_to_smartlist(smartlist_t *sl, char *list) {
char nick[MAX_NICKNAME_LEN];
routerinfo_t *router;
+ assert(sl);
+ assert(list);
+
while(isspace((int)*list) || *list==',') list++;
start = list;