diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-01-27 19:22:42 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-01-27 19:22:42 +0000 |
commit | 435f512a1f565f92e7297edc102d8f782565f7a5 (patch) | |
tree | 66ca86f6b0abb347932c092f483ce8de9af2375d /route.c | |
parent | Version 2.1_rc15e (diff) | |
download | openvpn-435f512a1f565f92e7297edc102d8f782565f7a5.tar.xz |
Fixed some issues with C++ style comments that leaked into the code.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3899 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | route.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1530,7 +1530,7 @@ get_default_gateway (in_addr_t *gateway, in_addr_t *netmask) *gateway = best_gw; if (netmask) { - *netmask = 0xFFFFFF00; // FIXME -- get the real netmask of the adapter containing the default gateway + *netmask = 0xFFFFFF00; /* FIXME -- get the real netmask of the adapter containing the default gateway */ } ret = true; } |