소스 검색

Fix some log messages to refer to correct control type.

svn:r3729
Nick Mathewson 20 년 전
부모
커밋
5315b61e13
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/or/control.c

+ 2 - 2
src/or/control.c

@@ -494,14 +494,14 @@ handle_control_mapaddress(connection_t *conn, uint32_t len, const char *body)
       if (!is_plausible_address(from)) {
         log_fn(LOG_WARN,"Skipping invalid argument '%s' in MapAddress msg",from);
       } else if (!is_plausible_address(to)) {
-        log_fn(LOG_WARN,"Skipping invalid argument '%s' in AddressMap msg",to);
+        log_fn(LOG_WARN,"Skipping invalid argument '%s' in MapAddress msg",to);
       } else if (!strcmp(from, ".") || !strcmp(from, "0.0.0.0")) {
         char *addr = addressmap_register_virtual_address(
                strcmp(from,".") ? RESOLVED_TYPE_HOSTNAME : RESOLVED_TYPE_IPV4,
                tor_strdup(to));
         if (!addr) {
           log_fn(LOG_WARN,
-                 "Unable to allocate address for '%s' in AdressMap msg", line);
+                 "Unable to allocate address for '%s' in MapAddress msg",line);
         } else {
           size_t anslen = strlen(addr)+strlen(to)+2;
           char *ans = tor_malloc(anslen);