diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-03-11 18:56:41 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-03-11 18:56:41 +0000 |
commit | 11e464c3312cb2813ce326fd83ea88364edb0f4a (patch) | |
tree | a83fd52d435ab9e166893b8870d8d8f76595b87f /src/or/config.c | |
parent | 4d32c2e81f25668bc74fc879c2be62f018690b4e (diff) | |
download | tor-11e464c3312cb2813ce326fd83ea88364edb0f4a.tar.gz tor-11e464c3312cb2813ce326fd83ea88364edb0f4a.zip |
r18753@catbus: nickm | 2008-03-11 14:56:39 -0400
Make some assert()s into tor_assert()s. Make some tor_assert()s called from logging into assert()s, and document why.
svn:r13977
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index cdddd3c4fc..daa3dd9206 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3718,7 +3718,7 @@ options_init_from_string(const char *cf, config_line_t *cl; int retval; int err = -1; - assert(msg); + tor_assert(msg); oldoptions = global_options; /* get_options unfortunately asserts if this is the first time we run*/ |