*** empty log message ***

svn path=/trunk/boinc/; revision=1306
This commit is contained in:
Eric Heien 2003-06-05 19:00:05 +00:00
parent 81e0a65ae2
commit 07b3d2aeaf
2 changed files with 3 additions and 0 deletions

View File

@ -397,6 +397,7 @@ int read_ppm_file(char* name, int& w, int& h, unsigned char** arrayp) {
int i;
f = fopen(name, "rb");
if (!f) return -1;
do {fgets(buf, 256, f);} while (buf[0] == '#');
if (buf[0] != 'P') {
return -1;

View File

@ -144,7 +144,9 @@ int main(int argc, char** argv) {
signal(SIGHUP, quit_client);
signal(SIGINT, quit_client);
signal(SIGQUIT, quit_client);
#ifdef SIGPWR
signal(SIGPWR, quit_client);
#endif
signal(SIGTSTP, susp_client);
signal(SIGCONT, resume_client);
#endif