50edf3201c
PR: 19674 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
16 lines
405 B
Plaintext
16 lines
405 B
Plaintext
--- source/cddb.c.orig Sat Jan 8 14:50:27 2000
|
|
+++ source/cddb.c Thu Jun 29 01:11:30 2000
|
|
@@ -200,7 +200,12 @@
|
|
return -1;
|
|
}
|
|
|
|
+#ifdef HAVE_STRERROR_R
|
|
strerror_r(rc, message, 64);
|
|
+#else
|
|
+ strncpy (message, strerror (rc), 64);
|
|
+ message[63]='\0';
|
|
+#endif
|
|
fputs("Error invoking pthread_create: ", stderr);
|
|
fputs(message, stderr);
|
|
fputc('\n', stderr);
|