diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-30 12:03:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-30 12:03:16 -0600 |
commit | 08dd81707cbc9e2b4f1afb74a82321939a92d333 (patch) | |
tree | 50f735d40d03b17269297f34c8bc6847574620bb /src | |
parent | 264c6117223b7c68d342ab881d1c718dd008a79f (diff) | |
download | smartcardauth-08dd81707cbc9e2b4f1afb74a82321939a92d333.tar.gz smartcardauth-08dd81707cbc9e2b4f1afb74a82321939a92d333.zip |
Rename ksocket and kcache
Diffstat (limited to 'src')
-rw-r--r-- | src/smartauthmon.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/smartauthmon.cpp b/src/smartauthmon.cpp index eec2776..1386c30 100644 --- a/src/smartauthmon.cpp +++ b/src/smartauthmon.cpp @@ -47,9 +47,9 @@ // Some internal constants #define CREATE_LIFE_CYCLE "01" -#define TDM_CONTROL_FIFO_DIR "/tmp/ksocket-global/tdm" -#define TDM_CONTROL_FIFO_FILE "/tmp/ksocket-global/tdm/tdmctl-%1" -#define TDM_CONTROL_FIFO_SAK_FILE "/tmp/ksocket-global/tdm/tdmctl-sak-%1" +#define TDM_CONTROL_FIFO_DIR "/tmp/tdesocket-global/tdm" +#define TDM_CONTROL_FIFO_FILE "/tmp/tdesocket-global/tdm/tdmctl-%1" +#define TDM_CONTROL_FIFO_SAK_FILE "/tmp/tdesocket-global/tdm/tdmctl-sak-%1" // In ckpass.o extern "C" { @@ -362,7 +362,7 @@ int main (int argc, char *argv[]) int output = systemexec("echo \"exit\" | timeout 1 scriptor 2>/dev/null 1>/dev/null"); if (output == 0) { printf("[DEBUG 400.1] Card inserted!\n\r"); fflush(stdout); - systemexec("echo \"TAuthenticating SmartCard...\" > /tmp/ksocket-global/kdesktoplockcontrol &"); + systemexec("echo \"TAuthenticating SmartCard...\" > /tmp/tdesocket-global/kdesktoplockcontrol &"); // Get card ATR systemexec((TQString("echo \"RESET\" > %1/query").arg(secure_directory)).ascii()); @@ -494,7 +494,7 @@ int main (int argc, char *argv[]) } else { printf("[DEBUG 400.7] This card does not recognize this system!\n\r"); fflush(stdout); - systemexec("echo \"EInvalid SmartCard Inserted\" > /tmp/ksocket-global/kdesktoplockcontrol &"); + systemexec("echo \"EInvalid SmartCard Inserted\" > /tmp/tdesocket-global/kdesktoplockcontrol &"); sleep(1); smartcard_username=""; unlink((TQString("%1/password").arg(secure_directory)).ascii()); @@ -585,7 +585,7 @@ int main (int argc, char *argv[]) systemexec((TQString(TRINITY_BIN_PREFIX "tdmctl activate %1").arg(udisplay)).ascii()); } else { - systemexec("echo \"EUnauthorized SmartCard Inserted\" > /tmp/ksocket-global/kdesktoplockcontrol &"); + systemexec("echo \"EUnauthorized SmartCard Inserted\" > /tmp/tdesocket-global/kdesktoplockcontrol &"); } } else { @@ -713,7 +713,7 @@ int main (int argc, char *argv[]) // if (loginok == 1) { // Wait for SmartCard removal - systemexec("echo \"C\" > /tmp/ksocket-global/kdesktoplockcontrol &"); + systemexec("echo \"C\" > /tmp/tdesocket-global/kdesktoplockcontrol &"); timer=60; output=0; @@ -833,7 +833,7 @@ int main (int argc, char *argv[]) smartcard_username=""; unlink("/etc/smartmon/minutesremaining"); - systemexec("echo \"C\" > /tmp/ksocket-global/kdesktoplockcontrol &"); + systemexec("echo \"C\" > /tmp/tdesocket-global/kdesktoplockcontrol &"); } } } |