tags 387117 + patch
kthxbye

A patch is attached which fixes the listed error.  I did not test-build
it; you are encouraged to.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
Screw you, AACS LA: 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187
--- searchandrescue.old/sar/string.cpp	2007-06-19 22:59:19.000000000 +0000
+++ searchandrescue-0.8.2/sar/string.cpp	2007-06-19 23:02:14.000000000 +0000
@@ -29,7 +29,7 @@
 #ifdef __MSW__
 int strcasecmp(const char *s1, const char *s2);
 #endif
-char *strcasestr(const char *haystack, const char *needle);
+char *strcasestr(const char *haystack, const char *needle) throw();
 int strpfx(const char *s, const char *pfx);
 int strcasepfx(const char *s, const char *pfx);
 
@@ -218,7 +218,7 @@
  *	Case insensitive version of strstr(). Returns the pointer to
  *	needle in haystack if found or NULL on no match.
  */
-char *strcasestr(const char *haystack, const char *needle)
+char *strcasestr(const char *haystack, const char *needle) throw()
 {
 	const char *strptr1, *strptr2, *strptr3;
 

Attachment: signature.asc
Description: Digital signature

Reply via email to