aboutsummaryrefslogtreecommitdiffstats
path: root/src/cerberus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cerberus.c')
-rw-r--r--src/cerberus.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cerberus.c b/src/cerberus.c
index 49fbe66..a67a9ef 100644
--- a/src/cerberus.c
+++ b/src/cerberus.c
@@ -240,7 +240,9 @@ void do_login(int argc, char** argv)
/* Verify passphrase or other token, if -f has not been used */
- #if AUTH > 0
+ #if AUTH == 0
+ (void) hostname;
+ #else
initialise_login(hostname, username, read_passphrase);
if ((skip_auth == 0) && authenticate_login())
#endif