summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2006-09-11 11:22:52 +0000
committerMatt Johnston <matt@ucc.asn.au>2006-09-11 11:22:52 +0000
commit33a182674a8c8735c17e627984bf49562aeb1370 (patch)
treeaf189476c5c2ddfdd26a1937332e346ef0fb7242
parent14a790891fe6179e1577213978264f84cd428c75 (diff)
Forgot variable declaration.
--HG-- extra : convert_revision : 08a0ab6d3e7efefaa07f3d428e9fe8a503f670ac
-rw-r--r--dbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.c b/dbutil.c
index 52d9008..9445f0e 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -530,7 +530,7 @@ int buf_readfile(buffer* buf, const char* filename) {
int fd = -1;
int len;
int maxlen;
- ret = DROPBEAR_FAILURE;
+ int ret = DROPBEAR_FAILURE;
fd = open(filename, O_RDONLY);