Skip to content

Commit

Permalink
Grammar fix on ssh -t message
Browse files Browse the repository at this point in the history
  • Loading branch information
keithw committed Sep 29, 2012
1 parent 0311365 commit f621f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/mosh-server.cc
Expand Up @@ -333,7 +333,7 @@ int run_server( const char *desired_ip, const char *desired_port,
struct winsize window_size;
if ( ioctl( STDIN_FILENO, TIOCGWINSZ, &window_size ) < 0 ) {
perror( "ioctl TIOCGWINSZ" );
fprintf( stderr, "If running with ssh, please use -t argument to provide a PTY.\n" );
fprintf( stderr, "If running with ssh, please use ssh -t to provide a PTY.\n" );
exit( 1 );
}

Expand Down

0 comments on commit f621f9f

Please sign in to comment.