removed stderr fprintfs

svn path=/trunk/boinc/; revision=1574
This commit is contained in:
Karl Chen 2003-06-24 00:33:59 +00:00
parent 6c90acf0d5
commit c4bb92ca30
4 changed files with 39 additions and 31 deletions

View File

@ -5013,3 +5013,11 @@ Karl 2003/06/23
filesys.h
util.C
util.h
Karl 2003/06/23
- removed stderr messages on detach_project() after user adds a URL that
doesn't work
client/
http.C
net_xfer.C

View File

@ -11,7 +11,7 @@
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
//
// The Initial Developer of the Original Code is the SETI@home project.
// Portions created by the SETI@home project are Copyright (C) 2002
// Portions created by the SETI@home project are Copyright (C) 2002, 2003
// University of California at Berkeley. All Rights Reserved.
//
// Contributor(s):
@ -539,6 +539,6 @@ int HTTP_OP_SET::remove(HTTP_OP* p) {
}
iter++;
}
fprintf(stdout, "HTTP_OP_SET::remove(): not found\n");
// fprintf(stdout, "HTTP_OP_SET::remove(): not found\n");
return 1;
}

View File

@ -11,7 +11,7 @@
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
//
// The Initial Developer of the Original Code is the SETI@home project.
// Portions created by the SETI@home project are Copyright (C) 2002
// Portions created by the SETI@home project are Copyright (C) 2002, 2003
// University of California at Berkeley. All Rights Reserved.
//
// Contributor(s):
@ -272,7 +272,7 @@ int NET_XFER_SET::remove(NET_XFER* nxp) {
}
iter++;
}
fprintf(stdout, "NET_XFER_SET::remove(): not found\n");
// fprintf(stdout, "NET_XFER_SET::remove(): not found\n");
return 1;
}