diff options
Diffstat (limited to 'camel/camel-stream-fs.c')
-rw-r--r-- | camel/camel-stream-fs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/camel/camel-stream-fs.c b/camel/camel-stream-fs.c index e540665dd3..d61d494c49 100644 --- a/camel/camel-stream-fs.c +++ b/camel/camel-stream-fs.c @@ -27,6 +27,7 @@ #include <sys/stat.h> #include <fcntl.h> #include <errno.h> +#include <string.h> #include "camel-log.h" static CamelStreamClass *parent_class=NULL; @@ -295,6 +296,7 @@ static gint _available (CamelStream *stream) { g_warning ("Not implemented yet"); + return -1; } @@ -310,6 +312,7 @@ static gboolean _eos (CamelStream *stream) { g_warning ("Not implemented yet"); + return FALSE; } |