Fixed compiler error: request for member strict in something not a structure or union

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
Slava Zanko 2011-10-25 12:09:35 +03:00
parent 489c7bf32e
commit c67bb4c53f
1 changed files with 1 additions and 1 deletions

View File

@ -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); reply_up = g_ascii_strup (reply_string, -1);
SUP->remote_is_amiga = strstr (reply_up, "AMIGA") != 0; 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 */ 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); g_free (reply_up);
if (MEDATA->logfile) if (MEDATA->logfile)