Remove setlocal call

The setlocal() function call is not needed, but triggers a bug in the
TITAN's float2str, log, and ttcn2string functions. The setlocal()
call breaks the float to string conversion on some locals.

The f_EPTF_StatCapture_get_time function called with format
specifier: either "%Y-%m-%d_%H.%M.%S" or "%Y-%m-%d-%H:%M:%S"
None of the local dependent.

Change-Id: Id4d4efd197ffeac3c0db2990a118ad77dcce5961
diff --git a/src/StatCapture/EPTF_CLL_StatCapture_ExternalFunctions.cc b/src/StatCapture/EPTF_CLL_StatCapture_ExternalFunctions.cc
index bb1909d..87902db 100644
--- a/src/StatCapture/EPTF_CLL_StatCapture_ExternalFunctions.cc
+++ b/src/StatCapture/EPTF_CLL_StatCapture_ExternalFunctions.cc
@@ -54,7 +54,7 @@
   
   time_t tim=time(NULL);
   tm *now=localtime(&tim);
-  setlocale (LC_ALL, "");
+  // setlocale (LC_ALL, "");
   data_size=strftime(ptr, buff_size, formatstring, now);
 
   if (milisec) {