Fixed coding style and clearified some comments, following arnavion suggestions

This commit is contained in:
Helder Martins
2013-07-17 09:20:54 +01:00
parent 0c87c49146
commit a8abba84bd
3 changed files with 21 additions and 22 deletions

View File

@@ -228,7 +228,7 @@ is_dcc (struct DCC *dcc)
}
gboolean
is_dcc_fcompleted (struct DCC *dcc)
is_dcc_completed (struct DCC *dcc)
{
if (dcc != NULL)
return (dcc->dccstat == STAT_FAILED || dcc->dccstat == STAT_DONE || dcc->dccstat == STAT_ABORTED);

View File

@@ -117,7 +117,7 @@ struct dccstat_info
extern struct dccstat_info dccstat[];
gboolean is_dcc (struct DCC *dcc);
gboolean is_dcc_fcompleted (struct DCC *dcc);
gboolean is_dcc_completed (struct DCC *dcc);
void dcc_abort (session *sess, struct DCC *dcc);
void dcc_get (struct DCC *dcc);
int dcc_resume (struct DCC *dcc);