diff options
author | Matt Johnston <matt@ucc.asn.au> | 2006-09-11 11:22:52 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2006-09-11 11:22:52 +0000 |
commit | 33a182674a8c8735c17e627984bf49562aeb1370 (patch) | |
tree | af189476c5c2ddfdd26a1937332e346ef0fb7242 | |
parent | 14a790891fe6179e1577213978264f84cd428c75 (diff) |
Forgot variable declaration.
--HG--
extra : convert_revision : 08a0ab6d3e7efefaa07f3d428e9fe8a503f670ac
-rw-r--r-- | dbutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |