Fixed DEBUG_TRACE macro so that we don't get semicolons left about the place

--HG--
extra : convert_revision : d928bc851e32be7bd429bf7504b148c0e4bf7e2f
This commit is contained in:
Matt Johnston
2005-01-02 20:25:56 +00:00
parent b5bd8591e7
commit 8c1a429c44
41 changed files with 456 additions and 456 deletions

View File

@@ -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 */
}