]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Resolve bug 3448: remove mention of tor-ops (which is not in use)
authorNick Mathewson <nickm@torproject.org>
Fri, 2 Dec 2011 20:42:15 +0000 (15:42 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 2 Dec 2011 20:42:15 +0000 (15:42 -0500)
changes/bug3448 [new file with mode: 0644]
src/or/connection.c

diff --git a/changes/bug3448 b/changes/bug3448
new file mode 100644 (file)
index 0000000..6e7d4b4
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes:
+    - Fix a log message suggesting that people contact a non-existent
+      email address. Fix for bug 3448.
index 7b95acac66d364fe27c523ab4059bd323c374153..28d8bca12ad701479d6f26b4b33b5eac828297f2 100644 (file)
@@ -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);