Commit 9c3050f4 authored by Claes Sjofors's avatar Claes Sjofors

Spelling fix

parent e4c14514
......@@ -277,7 +277,7 @@ int main()
sleep( 10);
}
else {
fprintf( stderr, "Socket connection successfull: master socket = %d\n", m);
fprintf( stderr, "Socket connection successful: master socket = %d\n", m);
for ( int i = 1;; i++) {
s = soap_accept( &soap);
......
......@@ -838,7 +838,7 @@ static pwr_tStatus IoRackInit (
goto Exit;
}
errh_Success ("Powerlink init successfull");
errh_Success ("Powerlink init successful");
return IO__SUCCESS;
......
......@@ -366,7 +366,7 @@ static pwr_tStatus IoAgentInit (io_tCtx ctx, io_sAgent *ap) {
goto Exit;
}
errh_Success ("Powerlink init successfull");
errh_Success ("Powerlink init successful");
return IO__SUCCESS;
......
......@@ -215,11 +215,11 @@ void Wb::login_success( void *ctx)
pwr_tStatus sts;
char msg[80];
printf( "-- Successfull login\n");
printf( "-- Successful login\n");
sprintf( msg, "User %s logged in", CoLogin::username());
MsgWindow::message( 'I', msg);
/* Successfull login, start the volume selection */
/* Successful login, start the volume selection */
if ( CoLogin::privilege() & pwr_mPrv_DevRead )
{
......@@ -526,7 +526,7 @@ void Wb::vsel_cancel()
void Wb::login_cancel( void *ctx)
{
printf( "-- Login canceled\n");
/* Not successfull login, exit */
/* Not successful login, exit */
exit(LOGIN__AUTHFAIL);
}
......@@ -442,7 +442,7 @@ void WFoe::activate_syntax()
BEEP;
}
else
message( "Syntax successfull completion");
message( "Syntax successful completion");
}
if ( show_execorder)
......@@ -3824,7 +3824,7 @@ int WFoe::change_mode( int new_mode)
sts = vldh_get_wind_modification( wind, &vldh_mod);
if ( !info.Empty || vldh_mod) {
/* Assume mode change is not successfull */
/* Assume mode change is not successful */
wanted_function = VIEW;
set_mode_button_state( VIEW, 0);
set_mode_button_state( EDIT, 1);
......@@ -3973,7 +3973,7 @@ int WFoe::change_mode( int new_mode)
sts = vldh_get_wind_modification( wind, &vldh_mod);
if ( !info.Empty || vldh_mod) {
/* Assume mode change is not successfull */
/* Assume mode change is not successful */
wanted_function = TRACE;
set_mode_button_state( TRACE, 0);
set_mode_button_state( EDIT, 1);
......@@ -4059,7 +4059,7 @@ int WFoe::change_mode( int new_mode)
sts = vldh_get_wind_modification( wind, &vldh_mod);
if ( !info.Empty || vldh_mod) {
/* Assume mode change is not successfull */
/* Assume mode change is not successful */
wanted_function = SIMULATE;
set_mode_button_state( SIMULATE, 0);
set_mode_button_state( EDIT, 1);
......
......@@ -5403,7 +5403,7 @@ static int wnav_check_func( void *client_data,
wnav->message( errorcount ? 'E' : 'W', msg);
}
else
wnav->message( 'I', "Successfull syntax check, no errors or warnings found");
wnav->message( 'I', "Successful syntax check, no errors or warnings found");
}
else {
if ( EVEN( dcli_get_qualifier( "/NAME", namestr, sizeof(namestr)))) {
......@@ -5429,7 +5429,7 @@ static int wnav_check_func( void *client_data,
wnav->message( errorcount ? 'E' : 'W', msg);
}
else
wnav->message( 'I', "Successfull syntax check, no errors or warnings found");
wnav->message( 'I', "Successful syntax check, no errors or warnings found");
}
}
else if ( cdh_NoCaseStrncmp( arg1_str, "BOOTFILE", strlen( arg1_str)) == 0) {
......
......@@ -117,7 +117,7 @@ void WPkg::activate_distribute()
wpkgnav->refresh_node( itemlist[i]);
char msg[80];
sprintf( msg, "Distribution successfull to %s", ((WItemPkgNode *)itemlist[i])->nodename);
sprintf( msg, "Distribution successful to %s", ((WItemPkgNode *)itemlist[i])->nodename);
message('I', msg);
flush();
}
......@@ -138,7 +138,7 @@ void WPkg::activate_distribute()
wpkgnav->refresh_node( itemlist[0]);
char msg[80];
sprintf( msg, "Distribution successfull to %s", ((WItemPkgNode *)itemlist[0])->nodename);
sprintf( msg, "Distribution successful to %s", ((WItemPkgNode *)itemlist[0])->nodename);
message('I', msg);
reset_cursor();
}
......@@ -146,7 +146,7 @@ void WPkg::activate_distribute()
set_clock_cursor();
wb_pkg::copyPackage( ((WItemPkgPackage *)itemlist[0])->packagename);
char msg[80];
sprintf( msg, "Distribution successfull of %s", ((WItemPkgPackage *)itemlist[0])->packagename);
sprintf( msg, "Distribution successful of %s", ((WItemPkgPackage *)itemlist[0])->packagename);
message('I', msg);
reset_cursor();
}
......
......@@ -1032,7 +1032,7 @@ void Wtt::activate_syntax()
message( 'W', msg);
}
else
message( 'I', "Syntax check successfull");
message( 'I', "Syntax check successful");
}
void Wtt::activate_find()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment