rename
This commit is contained in:
parent
b5d3dbd699
commit
bdc689e225
2 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
|
@ -1,2 +1,2 @@
|
|||
all:
|
||||
g++ -o tpm tpm.cc
|
||||
g++ -o tpom tpom.cc
|
||||
|
|
|
|||
4
tpom.cc
4
tpom.cc
|
|
@ -21,7 +21,7 @@ const char* kDefaultDoneMessage = "";
|
|||
string SocketName() {
|
||||
string socket_name;
|
||||
socket_name.append(P_tmpdir);
|
||||
socket_name.append("/.tpm-");
|
||||
socket_name.append("/.tpom-");
|
||||
socket_name.append(getenv("USER"));
|
||||
return socket_name;
|
||||
}
|
||||
|
|
@ -29,7 +29,7 @@ string SocketName() {
|
|||
string MakePostHookPath() {
|
||||
string post_hook;
|
||||
post_hook = getenv("HOME");
|
||||
post_hook += "/.tpm-post.sh";
|
||||
post_hook += "/.tpom-post.sh";
|
||||
return post_hook;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue