view defaults/hg-wrapper.cpp @ 10:bd465da5cd0f

remove USELESS code.
author Robert McIntyre <rlm@mit.edu>
date Wed, 09 Jan 2013 04:58:05 +0000
parents a0c0ccd22ca5
children 389f8678f1d8
line wrap: on
line source
1 #include <cstdlib>
2 #include <vector>
3 #include <string>
4 #include <unistd.h>
5 #include <boost/algorithm/string/join.hpp>
7 main( int argc, char ** argv){
8 std::vector<std::string> input(argv, argv+argc);
9 input[0] = std::string("hg");
10 std::string command = boost::algorithm::join(input, " ");
11 setreuid( geteuid(), geteuid() );
12 return system(command.c_str());
13 }