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 filesys.h
util.C util.C
util.h 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 Original Code is the Berkeley Open Infrastructure for Network Computing.
// //
// The Initial Developer of the Original Code is the SETI@home project. // 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. // University of California at Berkeley. All Rights Reserved.
// //
// Contributor(s): // Contributor(s):
@ -539,6 +539,6 @@ int HTTP_OP_SET::remove(HTTP_OP* p) {
} }
iter++; iter++;
} }
fprintf(stdout, "HTTP_OP_SET::remove(): not found\n"); // fprintf(stdout, "HTTP_OP_SET::remove(): not found\n");
return 1; return 1;
} }

View File

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