aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-08-18 18:22:52 +0300
committerSergey Poznyakoff <gray@gnu.org>2021-08-18 18:22:52 +0300
commit43a4eaa03df87f3ae0b07dd344bea7b7a586d092 (patch)
treeb8cc094e56d8ef16db8cbd8691e1a48994aed7df
parent739ed66f6f3ad17db7c6ed2461db9e7c405070b1 (diff)
downloadgdbm-43a4eaa03df87f3ae0b07dd344bea7b7a586d092.tar.gz
gdbm-43a4eaa03df87f3ae0b07dd344bea7b7a586d092.tar.bz2
Minor fix
* src/input-argv.c ((instream_argv_read): Fix escaping of special characters.
-rw-r--r--src/input-argv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input-argv.c b/src/input-argv.c
index 87a4192..acb6544 100644
--- a/src/input-argv.c
+++ b/src/input-argv.c
@@ -86,7 +86,6 @@ instream_argv_read (instream_t istr, char *buf, size_t size)
if (total + 2 > size)
break;
buf[total++] = '\\';
- i->cur++;
}
buf[total++] = *i->cur++;
}

Return to:

Send suggestions and report system problems to the System administrator.