From 20bd58749e4b3323c64f76628b3fd3a7f172fc3a Mon Sep 17 00:00:00 2001 From: Tristan Heaven Date: Thu, 7 Nov 2013 16:45:04 +0000 Subject: [PATCH] Fix help_text errors for break and status modes --- src/mode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mode.c b/src/mode.c index 7254b30..f7d31a3 100644 --- a/src/mode.c +++ b/src/mode.c @@ -787,7 +787,7 @@ int mode_break( int argc, char *argv[] ) if ( NULL == sock ){ fprintf( stderr, "--sock is required.\n" ); - exit_err( acl_help_text ); + exit_err( break_help_text ); } do_remote_command( "break", sock, argc - optind, argv + optind ); @@ -808,7 +808,7 @@ int mode_status( int argc, char *argv[] ) if ( NULL == sock ){ fprintf( stderr, "--sock is required.\n" ); - exit_err( acl_help_text ); + exit_err( status_help_text ); } do_remote_command( "status", sock, argc - optind, argv + optind );