From 8cc7c3313341f29086f1436b7ab159b2dae359af Mon Sep 17 00:00:00 2001 From: icex2 Date: Tue, 6 Oct 2020 23:27:50 +0200 Subject: [PATCH] hook/nx2: Set default machine id to 0/invalid id Any other id activates one part of the feature guard to enable pumpnet. The other being a non empty server address. --- src/main/hook/nx2/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/hook/nx2/options.c b/src/main/hook/nx2/options.c index 24fbd1c..51485e3 100644 --- a/src/main/hook/nx2/options.c +++ b/src/main/hook/nx2/options.c @@ -98,7 +98,7 @@ const struct util_options_def nx2hook_options_def[] = { .description = "Machine id for pumpnet", .param = 'm', .type = UTIL_OPTIONS_TYPE_STR, - .default_value.str = "0102030405060708", + .default_value.str = "0", }, { .name = NX2HOOK_OPTIONS_STR_PATCH_NET_PROFILE_VERBOSE_LOG_OUTPUT,