From c67bb4c53f89509eb80aea8bea8db6c5172f2fdb Mon Sep 17 00:00:00 2001 From: Slava Zanko Date: Tue, 25 Oct 2011 12:09:35 +0300 Subject: [PATCH] Fixed compiler error: request for member strict in something not a structure or union Signed-off-by: Slava Zanko --- src/vfs/ftpfs/ftpfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vfs/ftpfs/ftpfs.c b/src/vfs/ftpfs/ftpfs.c index 276a5ef6a..9f053fc0f 100644 --- a/src/vfs/ftpfs/ftpfs.c +++ b/src/vfs/ftpfs/ftpfs.c @@ -628,7 +628,7 @@ ftpfs_login_server (struct vfs_class *me, struct vfs_s_super *super, const char reply_up = g_ascii_strup (reply_string, -1); SUP->remote_is_amiga = strstr (reply_up, "AMIGA") != 0; if (strstr (reply_up, " SPFTP/1.0.0000 SERVER ")) /* handles `LIST -la` in a weird way */ - SUP.strict = RFC_STRICT; + SUP->strict = RFC_STRICT; g_free (reply_up); if (MEDATA->logfile)