diff cli-authpasswd.c @ 165:0cfba3034be5

Fixed DEBUG_TRACE macro so that we don't get semicolons left about the place
author Matt Johnston <matt@ucc.asn.au>
date Sun, 02 Jan 2005 20:25:56 +0000
parents e3adf4cf5465
children 257f09a63dab
line wrap: on
line diff
--- a/cli-authpasswd.c	Sun Jan 02 17:08:27 2005 +0000
+++ b/cli-authpasswd.c	Sun Jan 02 20:25:56 2005 +0000
@@ -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 @@
 	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 */
 
 }