Author: sayer
Date: 2009-03-03 09:26:24 +0100 (Tue, 03 Mar 2009)
New Revision: 1290

Modified:
   trunk/core/AmUtils.cpp
Log:
fix for compilation on solaris (?)


Modified: trunk/core/AmUtils.cpp
===================================================================
--- trunk/core/AmUtils.cpp      2009-03-03 08:25:38 UTC (rev 1289)
+++ trunk/core/AmUtils.cpp      2009-03-03 08:26:24 UTC (rev 1290)
@@ -981,7 +981,7 @@
 #ifndef BSD_COMP
   setenv(name,var.c_str(),1);
 #else
-  string sol_putenv = name + "=" + var;
+  string sol_putenv = name + string("=") + var;
   putenv(sol_putenv.c_str());
 #endif
 }

_______________________________________________
Semsdev mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/semsdev

Reply via email to