diff options
author | George Kadianakis <desnacked@riseup.net> | 2020-03-30 23:24:33 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2020-03-30 23:37:26 +0300 |
commit | 8fda94f944f00f6f436604038ce135ab70f4feb4 (patch) | |
tree | 6b51d59c8d229c7fdf05951b048bfb5f3be41470 /src/feature/hs/hs_ob.c | |
parent | 0667a5af8df8f372f6482254ca24c66268ed02f8 (diff) | |
download | tor-8fda94f944f00f6f436604038ce135ab70f4feb4.tar.gz tor-8fda94f944f00f6f436604038ce135ab70f4feb4.zip |
hs-v3: Move ob_subcreds to hs_service_state_t.
It's more natural there since it's runtime state.
Diffstat (limited to 'src/feature/hs/hs_ob.c')
-rw-r--r-- | src/feature/hs/hs_ob.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/feature/hs/hs_ob.c b/src/feature/hs/hs_ob.c index f135ecd3f4..a6a5cec26f 100644 --- a/src/feature/hs/hs_ob.c +++ b/src/feature/hs/hs_ob.c @@ -392,12 +392,12 @@ hs_ob_refresh_keys(hs_service_t *service) } /* Delete old subcredentials if any */ - if (service->ob_subcreds) { - tor_free(service->ob_subcreds); + if (service->state.ob_subcreds) { + tor_free(service->state.ob_subcreds); } - service->ob_subcreds = ob_subcreds; - service->n_ob_subcreds = num_subcreds; + service->state.ob_subcreds = ob_subcreds; + service->state.n_ob_subcreds = num_subcreds; } /** Free any memory allocated by the onionblance subsystem. */ |