diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-06-17 22:18:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-06-17 22:18:26 +0000 |
commit | 95e5384af3edf2804275ce97b331fcface8365f0 (patch) | |
tree | 073a16b76b56f6f9d0c9c5c9cb887c4a2a501896 /src/or/main.c | |
parent | 6965a4696cf3b00a1f385cf3f3a562897fefdb09 (diff) | |
download | tor-95e5384af3edf2804275ce97b331fcface8365f0.tar tor-95e5384af3edf2804275ce97b331fcface8365f0.tar.gz |
Change many files to new log_fn format
svn:r333
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index c231d57d6..181e7d898 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -753,7 +753,7 @@ dump_signed_directory_to_string_impl(char *s, int maxlen, directory_t *dir, i = strlen(s); cp = s+i; if (base64_encode(cp, maxlen-i, signature, 128) < 0) { - log(LOG_ERR,"dump_signed_directory_to_string(): couldn't base64-encode signature %d/%d"); + log_fn(LOG_ERR," couldn't base64-encode signature"); return -1; } |