Fix typo in error message

This commit is contained in:
Hallvard Furuseth 2007-12-08 18:01:47 +00:00
parent 5308b87018
commit e5de6a9400

View File

@ -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 ) {