summaryrefslogtreecommitdiffstats
path: root/httpserver/init.cc
diff options
context:
space:
mode:
authorPeter Baumann <p.baumann@jacobs-university.de>2010-07-22 18:40:58 +0200
committerwww-data <www-data@ubuntu.localdomain>2010-07-22 18:59:27 +0200
commit0668e010113735594a2c570c6f1d890fed78337f (patch)
treecdeebd51daa6da90d21488292b6225ebca163034 /httpserver/init.cc
parent6266bdb85ce90b10e2ae791d747d5dcaf3bbe77a (diff)
downloadrasdaman-upstream-0668e010113735594a2c570c6f1d890fed78337f.tar.gz
rasdaman-upstream-0668e010113735594a2c570c6f1d890fed78337f.tar.xz
rasdaman-upstream-0668e010113735594a2c570c6f1d890fed78337f.zip
PB: file path cleanup, such as removing RMANHOME variable usage
Diffstat (limited to 'httpserver/init.cc')
-rw-r--r--httpserver/init.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpserver/init.cc b/httpserver/init.cc
index b58ce35..964f1e2 100644
--- a/httpserver/init.cc
+++ b/httpserver/init.cc
@@ -81,7 +81,7 @@ rc_t Initialize( int argc, char *argv[], struct ServerBase *Server )
/* Read the environment variables */
char* dummy = CONFDIR;
if( dummy == NULL)
- ErrorMsg( E_SYS, FAIL, "FAIL: Environment variable RMANHOME is not set!" );
+ ErrorMsg( E_SYS, FAIL, "FAIL: configure error: CONFDIR not provided." );
Server->Directory = (char*)mymalloc(strlen(dummy) + 2);
strcpy(Server->Directory, dummy);
if( Server->Directory[strlen(Server->Directory)] != '/' )