From: ethan-thompson Date: Tue, 17 Dec 2024 19:33:02 +0000 (-0500) Subject: fix: Return -1 on error instead of 1 (01) - typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57f00c036d9ee753306059cc4e079f8e168de14f;p=thirdparty%2Ffreeradius-server.git fix: Return -1 on error instead of 1 (01) - typo. Signed-off-by: ethan-thompson --- diff --git a/src/lib/util/dict_tokenize.c b/src/lib/util/dict_tokenize.c index a3d144c50c3..e9902e8f611 100644 --- a/src/lib/util/dict_tokenize.c +++ b/src/lib/util/dict_tokenize.c @@ -1485,7 +1485,7 @@ static int dict_read_process_begin_vendor(dict_tokenize_ctx_t *dctx, char **argv if (argc < 1) { fr_strerror_const_push("Invalid BEGIN-VENDOR entry"); error: - return 01; + return -1; } vendor = fr_dict_vendor_by_name(dctx->dict, argv[0]);