diff -ur /root/svxlink-080730/echolib/EchoLinkStationData.cpp ./echolib/EchoLinkStationData.cpp --- /root/svxlink-080730/echolib/EchoLinkStationData.cpp 2009-07-17 19:37:58.000000000 +0000 +++ ./echolib/EchoLinkStationData.cpp 2009-07-17 19:39:23.000000000 +0000 @@ -201,7 +201,7 @@ m_status = STAT_UNKNOWN; } - char *space = strchr(end_desc, ' '); + const char *space = strchr(end_desc, ' '); if (space != 0) { strncpy(str, space+1, 5); diff -ur /root/svxlink-080730/svxlink/remotetrx/remotetrx.cpp ./svxlink/remotetrx/remotetrx.cpp --- /root/svxlink-080730/svxlink/remotetrx/remotetrx.cpp 2009-07-17 19:37:58.000000000 +0000 +++ ./svxlink/remotetrx/remotetrx.cpp 2009-07-17 19:39:58.000000000 +0000 @@ -619,7 +619,7 @@ } int write_len = 0; - char *nl = strchr(ptr, '\n'); + const char *nl = strchr(ptr, '\n'); if (nl != 0) { write_len = nl-ptr+1; diff -ur /root/svxlink-080730/svxlink/svxlink/svxlink.cpp ./svxlink/svxlink/svxlink.cpp --- /root/svxlink-080730/svxlink/svxlink/svxlink.cpp 2009-07-17 19:37:58.000000000 +0000 +++ ./svxlink/svxlink/svxlink.cpp 2009-07-17 19:39:40.000000000 +0000 @@ -609,7 +609,7 @@ } int write_len = 0; - char *nl = strchr(ptr, '\n'); + const char *nl = strchr(ptr, '\n'); if (nl != 0) { write_len = nl-ptr+1;