diff --git a/checkin_notes b/checkin_notes index 7b161ad650..ef884a5a6f 100755 --- a/checkin_notes +++ b/checkin_notes @@ -7395,3 +7395,13 @@ David 3 June 2005 sched/ handle_request.C sched_util.C + +David 6 June 2005 + - remove char* versions of starts_with() and ends_with(). + (Attempt to fix app_start problem on HPUX) + + client/ + cs_trickle.C + file_names.C + lib/ + util.C,h diff --git a/client/file_names.C b/client/file_names.C index b3746de4af..7bad83a22d 100644 --- a/client/file_names.C +++ b/client/file_names.C @@ -197,9 +197,9 @@ void get_statistics_filename(char* master_url, char* path) { bool is_image_file(const char* filename) { std::string fn = filename; downcase_string(fn); - if (ends_with(fn, ".jpg")) return true; - if (ends_with(fn, ".jpeg")) return true; - if (ends_with(fn, ".png")) return true; + if (ends_with(fn, std::string(".jpg"))) return true; + if (ends_with(fn, std::string(".jpeg"))) return true; + if (ends_with(fn, std::string(".png"))) return true; return false; } diff --git a/doc/bare_core.php b/doc/bare_core.php index 6c42800d12..6ead4c88aa 100644 --- a/doc/bare_core.php +++ b/doc/bare_core.php @@ -33,7 +33,7 @@ Some examples follow. Instructions from Paul Buck's BOINC Owner's Manual.
-Other BOINC developers (many of them volunteers) include: +BOINC developers (many of them volunteers) include:
"; $i = 0; diff --git a/doc/index.php b/doc/index.php index 8eb9c40233..6c5f5e094b 100644 --- a/doc/index.php +++ b/doc/index.php @@ -86,8 +86,11 @@ computer resources