Index: trunk/archive/pslib/src/Utils/logmsg.c
===================================================================
--- trunk/archive/pslib/src/Utils/logmsg.c	(revision 686)
+++ trunk/archive/pslib/src/Utils/logmsg.c	(revision 707)
@@ -20,5 +20,5 @@
  * Set the current log level and return old level
  */
-int psSetLogLevel(int level)		// new level
+int psLogSetLevel(int level)		// new level
 {
     int oldLevel = logLevel;
@@ -37,5 +37,5 @@
 /*****************************************************************************/
 
-int psSetLogDestination(int dest)	// new destination
+int psLogSetDestination(int dest)	// new destination
 {
     int old = logDest;
@@ -65,9 +65,9 @@
 static int log_time = 1, log_host = 1, log_level = 1, log_name = 1, log_msg = 1;
 
-void psSetLogFormat(const char *fmt)
+void psLogSetFormat(const char *fmt)
 {
     int nlog_time, nlog_host, nlog_level, nlog_name, nlog_msg; // new values of log_time etc.
 
-    nlog_host = nlog_level = nlog_msg = nlog_name = nlog_time = 0; // don't log anything
+    nlog_host = nlog_level = nlog_msg = nlog_name = nlog_time = 0; // don\'t log anything
     for (const char *ptr = fmt; *ptr != '\0'; ptr++) {
 	switch (*ptr) {
@@ -110,5 +110,5 @@
 #endif
 
-void p_psVLogMsg(const char *name, int level, const char *fmt, va_list ap)
+void p_psLogVMsg(const char *name, int level, const char *fmt, va_list ap)
 {
     static int first = 1;
@@ -159,5 +159,5 @@
 
     char head[HOST_NAME_MAX + 40];	// yes, this is long enough
-    char *head_ptr = head;		// where we've got to in head
+    char *head_ptr = head;		// where we\'ve got to in head
     time_t clock = time(NULL);
     struct tm *utc = gmtime(&clock);
@@ -224,5 +224,5 @@
     va_start(ap, fmt);
 
-    p_psVLogMsg(name, level, fmt, ap);
+    p_psLogVMsg(name, level, fmt, ap);
     va_end(ap);
 }
