소스 검색

Resolve bug 3448: remove mention of tor-ops (which is not in use)

Nick Mathewson 14 년 전
부모
커밋
cf14a520c8
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 0
      changes/bug3448
  2. 1 2
      src/or/connection.c

+ 3 - 0
changes/bug3448

@@ -0,0 +1,3 @@
+  o Minor bugfixes:
+    - Fix a log message suggesting that people contact a non-existent
+      email address. Fix for bug 3448.

+ 1 - 2
src/or/connection.c

@@ -3137,8 +3137,7 @@ connection_handle_write_impl(connection_t *conn, int force)
   /* Sometimes, "writable" means "connected". */
   if (connection_state_is_connecting(conn)) {
     if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, (void*)&e, &len) < 0) {
-      log_warn(LD_BUG,
-               "getsockopt() syscall failed?! Please report to tor-ops.");
+      log_warn(LD_BUG, "getsockopt() syscall failed");
       if (CONN_IS_EDGE(conn))
         connection_edge_end_errno(TO_EDGE_CONN(conn));
       connection_mark_for_close(conn);