if [ "$NOCONFIGURE" = "" ]; then
$srcdir/configure "$@" || exit 1
- if [ "$1" = "--help" ]; then exit 0 else
- echo "Now type \`make\' to compile $PKG_NAME" || exit 1
+ if [ "$1" = "--help" ]; then
+ exit 0
+ else
+ echo "Now type \`make\' to compile $PKG_NAME" || exit 1
fi
else
echo "Skipping configure process."
{
case 0:
/* protocol version */
- buf32 = 4 + 2 + 4;
+ buf32 = 2 + 4;
error = NULL;
written = g_output_stream_write (priv->ostream,
&buf32,
guint16 lname = strlen (priv->username);
guint16 lpassword = strlen (priv->password);
- buf32 = 4 + 2 + 2 + lname + 2 + lpassword;
+ buf32 = 2 + 2 + lpassword + 2 + lname;
error = NULL;
written = g_output_stream_write (priv->ostream,
&buf32,
return;
}
- buf16 = lname;
+ buf16 = lpassword;
error = NULL;
written = g_output_stream_write (priv->ostream,
&buf16,
}
error = NULL;
- written = g_output_stream_write (priv->ostream,
- &priv->username,
- lname,
+ g_output_stream_write_all (priv->ostream,
+ priv->password,
+ lpassword,
+ &written,
NULL,
&error);
if (written < 1
return;
}
- buf16 = lpassword;
+ buf16 = lname;
error = NULL;
written = g_output_stream_write (priv->ostream,
&buf16,
}
error = NULL;
- written = g_output_stream_write (priv->ostream,
- &priv->password,
- lpassword,
+ g_output_stream_write_all (priv->ostream,
+ priv->username,
+ lname,
+ &written,
NULL,
&error);
if (written < 1