summaryrefslogtreecommitdiff
path: root/cli-authpasswd.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-01-02 20:25:56 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-01-02 20:25:56 +0000
commit3d51fc3f20cef302869c7bedb868ac58df962aa0 (patch)
tree3680041dbbb983431d917652be96d2879f1f6820 /cli-authpasswd.c
parentdeba8522616bc4e62229b818a6721f967714009a (diff)
downloaddropbear-3d51fc3f20cef302869c7bedb868ac58df962aa0.tar.gz
Fixed DEBUG_TRACE macro so that we don't get semicolons left about the place
Diffstat (limited to 'cli-authpasswd.c')
-rw-r--r--cli-authpasswd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli-authpasswd.c b/cli-authpasswd.c
index 724203b..02bce18 100644
--- a/cli-authpasswd.c
+++ b/cli-authpasswd.c
@@ -33,7 +33,7 @@
int cli_auth_password() {
char* password = NULL;
- TRACE(("enter cli_auth_password"));
+ TRACE(("enter cli_auth_password"))
CHECKCLEARTOWRITE();
password = getpass("Password: ");
@@ -56,7 +56,7 @@ int cli_auth_password() {
encrypt_packet();
m_burn(password, strlen(password));
- TRACE(("leave cli_auth_password"));
+ TRACE(("leave cli_auth_password"))
return 1; /* Password auth can always be tried */
}