From e5de6a9400be59944c7a6726e2c1269f588de0a8 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Sat, 8 Dec 2007 18:01:47 +0000 Subject: [PATCH] Fix typo in error message --- clients/tools/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/tools/common.c b/clients/tools/common.c index ec506bd689..6fb304a6ec 100644 --- a/clients/tools/common.c +++ b/clients/tools/common.c @@ -746,7 +746,7 @@ tool_args( int argc, char **argv ) case 'P': ival = strtol( optarg, &next, 10 ); if ( next == NULL || next[0] != '\0' ) { - fprintf( stderr, "%s: unabel to parse protocol version \"%s\"\n", prog, optarg ); + fprintf( stderr, "%s: unable to parse protocol version \"%s\"\n", prog, optarg ); exit( EXIT_FAILURE ); } switch( ival ) { -- 2.39.5