Forgot variable declaration.

--HG--
extra : convert_revision : 08a0ab6d3e7efefaa07f3d428e9fe8a503f670ac
This commit is contained in:
Matt Johnston 2006-09-11 11:22:52 +00:00
parent 14a790891f
commit 33a182674a

View File

@ -530,7 +530,7 @@ int buf_readfile(buffer* buf, const char* filename) {
int fd = -1; int fd = -1;
int len; int len;
int maxlen; int maxlen;
ret = DROPBEAR_FAILURE; int ret = DROPBEAR_FAILURE;
fd = open(filename, O_RDONLY); fd = open(filename, O_RDONLY);