From 0ae2423f1967e001efb0983b629477f2b2b63207 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Wed, 27 Aug 2025 09:12:58 -0400 Subject: [PATCH] Version v0.2.99 - Correct bug --- otp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/otp.c b/otp.c index eefc9d6..2af1af4 100644 --- a/otp.c +++ b/otp.c @@ -315,9 +315,8 @@ int command_line_mode(int argc, char* argv[]) { } free(default_pad); - // Call encrypt_text and then comment about using default pad - int result = encrypt_text(pad_identifier, text); - return result; + // Call encrypt_text and return result + return encrypt_text(pad_identifier, text); } else { printf("Error: No default pad configured. Specify pad explicitly or configure default pad.\n"); return 1;