summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsijanec <anton@sijanec.eu>2021-01-19 20:30:55 +0100
committersijanec <anton@sijanec.eu>2021-01-19 20:30:55 +0100
commite6d42dc2f34f088f19e0189ca2fe67c570743a5f (patch)
tree357e3e901ec71f24f7d9bff66f1ed59432250961 /src
parentadded dynamic memory allocation for long variable keys and values (diff)
downloadbverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar.gz
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar.bz2
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar.lz
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar.xz
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.tar.zst
bverbose-e6d42dc2f34f088f19e0189ca2fe67c570743a5f.zip
Diffstat (limited to 'src')
-rw-r--r--src/bvrvar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bvrvar.c b/src/bvrvar.c
index c5ead88..6b80a60 100644
--- a/src/bvrvar.c
+++ b/src/bvrvar.c
@@ -65,7 +65,7 @@ int bvr_var_set(char * item, char * value) {
int bvr_var_mv(char * item, char * newname) {
BVR_VAR_FIRST_TIME();
- for(int i = 0; i < bvr_variables_count; i=i+2) {
+ for(int i = 0; i < bvr_variables_count; i++) {
if(strcmp(bvr_variables[i].k, item) == 0) {
if (bvr_variables[i].sk > strlen(newname)) {
bvr_variables[i].sk = strlen(newname)+128;