~ubuntu-branches/debian/sid/boinc/sid

« back to all changes in this revision

Viewing changes to sched/delete_file.cpp

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-08-08 01:36:51 UTC
  • mfrom: (6.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20110808013651-m1hs3cltiveuteyn
Tags: 6.13.1+dfsg-2
* Bringing notify patch to unstable.
* Adjusted build dependency to libjpeg-dev (Closes: #641093)
* Further improvements on stripchart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    sprintf(mth.variety, "delete_file");
65
65
    retval = mth.insert();
66
66
    if (retval) {
67
 
        fprintf(stderr, "msg_to_host.insert(): %d\n", retval);
 
67
        fprintf(stderr, "msg_to_host.insert(): %s\n", boincerror(retval));
68
68
        return retval;
69
69
    }
70
70
    return 0;
123
123
        config.db_name, config.db_host, config.db_user, config.db_passwd
124
124
    );
125
125
    if (retval) {
126
 
        fprintf(stderr, "boinc_db.open failed: %d\n", retval);
 
126
        fprintf(stderr, "boinc_db.open failed: %s\n", boincerror(retval));
127
127
        exit(1);
128
128
    }
129
129
 
132
132
    return retval;
133
133
}
134
134
 
135
 
const char *BOINC_RCSID_f6337b04b0 = "$Id: delete_file.cpp 21181 2010-04-15 03:13:56Z davea $";
 
135
const char *BOINC_RCSID_f6337b04b0 = "$Id: delete_file.cpp 22647 2010-11-08 17:51:57Z davea $";