From: Hallvard Furuseth Date: Sat, 8 Dec 2007 18:01:47 +0000 (+0000) Subject: Fix typo in error message X-Git-Tag: OPENLDAP_REL_ENG_2_4_9~20^2~331 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e5de6a9400be59944c7a6726e2c1269f588de0a8;p=openldap Fix typo in error message --- 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 ) {