瀏覽代碼

Fix compilation from 2841 branch

Nick Mathewson 14 年之前
父節點
當前提交
616d85fdd8
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/or/connection.c

+ 2 - 2
src/or/connection.c

@@ -4139,7 +4139,7 @@ int
 get_proxy_addrport(tor_addr_t *addr, uint16_t *port, int *proxy_type,
                    const connection_t *conn)
 {
-  or_options_t *options = get_options();
+  const or_options_t *options = get_options();
 
   if (options->HTTPSProxy) {
     tor_addr_copy(addr, &options->HTTPSProxyAddr);
@@ -4179,7 +4179,7 @@ get_proxy_addrport(tor_addr_t *addr, uint16_t *port, int *proxy_type,
 static int
 get_proxy_type(void)
 {
-  or_options_t *options = get_options();
+  const or_options_t *options = get_options();
 
   if (options->HTTPSProxy)
     return PROXY_CONNECT;