diff options
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 00bf89ee6f..420bf08d1d 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -701,7 +701,7 @@ dirserv_add_extrainfo(extrainfo_t *ei, const char **msg) extrainfo_free(ei); return -1; } - if ((r = routerinfo_incompatible_with_extrainfo(ri, ei, msg))) { + if ((r = routerinfo_incompatible_with_extrainfo(ri, ei, NULL, msg))) { extrainfo_free(ei); return r < 0 ? 0 : -1; } |