Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jshn.c2
-rw-r--r--sh/jshn.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/jshn.c b/jshn.c
index cd9d402..431e1b3 100644
--- a/jshn.c
+++ b/jshn.c
@@ -260,7 +260,7 @@ static int jshn_format(bool no_newline, bool indent)
const char *output;
obj = json_object_new_object();
- jshn_add_objects(obj, "JSON_VAR", false);
+ jshn_add_objects(obj, "J_V", false);
output = json_object_to_json_string(obj);
if (indent) {
blob_buf_init(&b, 0);
diff --git a/sh/jshn.sh b/sh/jshn.sh
index dab40e4..6bf4be2 100644
--- a/sh/jshn.sh
+++ b/sh/jshn.sh
@@ -105,7 +105,7 @@ json_cleanup() {
local unset tmp
_json_get_var unset JSON_UNSET
- for tmp in $unset JSON_VAR; do
+ for tmp in $unset J_V; do
unset \
${JSON_PREFIX}U_$tmp \
${JSON_PREFIX}K_$tmp \
@@ -125,8 +125,8 @@ json_init() {
json_cleanup
export -n ${JSON_PREFIX}JSON_SEQ=0
export -- \
- ${JSON_PREFIX}JSON_CUR="JSON_VAR" \
- ${JSON_PREFIX}K_JSON_VAR=
+ ${JSON_PREFIX}JSON_CUR="J_V" \
+ ${JSON_PREFIX}K_J_V=
}
json_add_object() {
@@ -250,7 +250,7 @@ json_select() {
local cur
[ -z "$1" ] && {
- _json_set_var JSON_CUR "JSON_VAR"
+ _json_set_var JSON_CUR "J_V"
return 0
}
[[ "$1" == ".." ]] && {