There's an extra ';' in src/or/config.h that MSVC doesn't like so much. Patch:
--- Git-latest\src\or\config.h 2013-05-28 07:32:46 +0000 +++ src\or\config.h 2013-05-28 07:39:42 +0000 @@ -109,7 +109,7 @@ char *transport_name; /* The name of the pluggable transport that should be used to connect to the bridge. */ char digest[DIGEST_LEN]; /* The bridge's identity key digest. */ - smartlist_t *socks_args;; /* SOCKS arguments for the pluggable + smartlist_t *socks_args; /* SOCKS arguments for the pluggable transport proxy. */ } bridge_line_t;
---gv
On Thu, Jul 11, 2013 at 2:18 PM, Gisle Vanem gvanem@broadpark.no wrote:
There's an extra ';' in src/or/config.h that MSVC doesn't like so much. Patch:
--- Git-latest\src\or\config.h 2013-05-28 07:32:46 +0000 +++ src\or\config.h 2013-05-28 07:39:42 +0000 @@ -109,7 +109,7 @@ char *transport_name; /* The name of the pluggable transport that should be used to connect to the bridge. */ char digest[DIGEST_LEN]; /* The bridge's identity key digest. */
- smartlist_t *socks_args;; /* SOCKS arguments for the pluggable
- smartlist_t *socks_args; /* SOCKS arguments for the pluggable transport proxy. */
} bridge_line_t;
Fixed in 14d5e7f85e343a48e27c3b8f2b560c4d1aff5315 ; thanks!