Explorar el Código

Change a warning/bug message

svn:r16576
Peter Palfrader hace 17 años
padre
commit
ab9078fca0
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/or/dirserv.c

+ 2 - 1
src/or/dirserv.c

@@ -1944,7 +1944,8 @@ routerstatus_format_entry(char *buf, size_t buf_len,
 
       base16_encode(id, sizeof(id), rs->identity_digest, DIGEST_LEN);
       base16_encode(dd, sizeof(dd), rs->descriptor_digest, DIGEST_LEN);
-      log_warn(LD_BUG, "Cannot get the descriptor with digest %s for %s.",
+      log_warn(LD_BUG, "Cannot get any descriptor for %s "
+                       "(wanted descriptor %s).",
                id, dd);
       return -1;
     };