Michele Baldessari wrote: > Hi all, > > a couple of one liners to fix spelling typos. (Against 1.2.5) > Thanks - https://bugzilla.redhat.com/show_bug.cgi?id=558518 > regards, > Michele > > diff -urNad trunk~/ldap/servers/plugins/chainingdb/cb_conn_stateless.c trunk/ldap/servers/plugins/chainingdb/cb_conn_stateless.c > --- trunk~/ldap/servers/plugins/chainingdb/cb_conn_stateless.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/plugins/chainingdb/cb_conn_stateless.c 2010-01-24 14:57:28.000000000 +0100 > @@ -412,7 +412,7 @@ > { > /* Bind is successful but password has expired */ > slapi_log_error(SLAPI_LOG_FATAL, CB_PLUGIN_SUBSYSTEM, > - "Succesfully bound as %s to remote server %s:%d, " > + "Successfully bound as %s to remote server %s:%d, " > "but password has expired.\n", > binddn, hostname, port); > } > @@ -424,7 +424,7 @@ > { > int password_expiring = atoi( serverctrls[ i ]->ldctl_value.bv_val ); > slapi_log_error(SLAPI_LOG_FATAL, CB_PLUGIN_SUBSYSTEM, > - "Succesfully bound as %s to remote server %s:%d, " > + "Successfully bound as %s to remote server %s:%d, " > "but password is expiring in %d seconds.\n", > binddn, hostname, port, password_expiring); > } > diff -urNad trunk~/ldap/servers/plugins/replication/repl5_connection.c trunk/ldap/servers/plugins/replication/repl5_connection.c > --- trunk~/ldap/servers/plugins/replication/repl5_connection.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/plugins/replication/repl5_connection.c 2010-01-24 14:57:28.000000000 +0100 > @@ -1696,7 +1696,7 @@ > { > /* Bind is successfull but password has expired */ > slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, > - "%s: Succesfully bound %s to consumer, " > + "%s: Successfully bound %s to consumer, " > "but password has expired on consumer.\n", > agmt_get_long_name(conn->agmt), binddn); > } > @@ -1708,7 +1708,7 @@ > { > int password_expiring = atoi( ctrls[ i ]->ldctl_value.bv_val ); > slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, > - "%s: Succesfully bound %s to consumer, " > + "%s: Successfully bound %s to consumer, " > "but password is expiring on consumer in %d seconds.\n", > agmt_get_long_name(conn->agmt), binddn, password_expiring); > } > diff -urNad trunk~/ldap/servers/plugins/replication/windows_connection.c trunk/ldap/servers/plugins/replication/windows_connection.c > --- trunk~/ldap/servers/plugins/replication/windows_connection.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/plugins/replication/windows_connection.c 2010-01-24 14:57:28.000000000 +0100 > @@ -658,7 +658,7 @@ > nummessages = ldap_count_messages(conn->ld, res); > numentries = ldap_count_entries(conn->ld, res); > numreferences = ldap_count_references(conn->ld, res); > - LDAPDebug( LDAP_DEBUG_REPL, "windows_search_entry: recieved %d messages, %d entries, %d references\n", > + LDAPDebug( LDAP_DEBUG_REPL, "windows_search_entry: received %d messages, %d entries, %d references\n", > nummessages, numentries, numreferences ); > } > > @@ -1743,7 +1743,7 @@ > { > /* Bind is successfull but password has expired */ > slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, > - "%s: Succesfully bound %s to consumer, " > + "%s: Successfully bound %s to consumer, " > "but password has expired on consumer.\n", > agmt_get_long_name(conn->agmt), binddn); > } > @@ -1755,7 +1755,7 @@ > { > int password_expiring = atoi( ctrls[ i ]->ldctl_value.bv_val ); > slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, > - "%s: Succesfully bound %s to consumer, " > + "%s: Successfully bound %s to consumer, " > "but password is expiring on consumer in %d seconds.\n", > agmt_get_long_name(conn->agmt), binddn, password_expiring); > } > diff -urNad trunk~/ldap/servers/slapd/connection.c trunk/ldap/servers/slapd/connection.c > --- trunk~/ldap/servers/slapd/connection.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/slapd/connection.c 2010-01-24 14:57:53.000000000 +0100 > @@ -631,7 +631,7 @@ > if (conn->c_refcnt <= 0) > { > slapi_log_error(SLAPI_LOG_FATAL, "connection", > - "conn=%" NSPRIu64 " fd=%d Attempt to release connection that is not aquired\n", > + "conn=%" NSPRIu64 " fd=%d Attempt to release connection that is not acquired\n", > conn->c_connid, conn->c_sd); > PR_ASSERT (PR_FALSE); > return -1; > diff -urNad trunk~/ldap/servers/slapd/entry.c trunk/ldap/servers/slapd/entry.c > --- trunk~/ldap/servers/slapd/entry.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/slapd/entry.c 2010-01-24 14:57:28.000000000 +0100 > @@ -391,7 +391,7 @@ > { > LDAPDebug( LDAP_DEBUG_ANY, > "str2entry_fast: entry %s exceeded max attribute value cound %ld\n", > - slapi_entry_get_dn_const(e)?slapi_entry_get_dn_const(e):"unkown", > + slapi_entry_get_dn_const(e)?slapi_entry_get_dn_const(e):"unknown", > attr_val_cnt, 0 ); > } > if (read_stateinfo && maxcsn) > diff -urNad trunk~/ldap/servers/slapd/sslerrstrs.h trunk/ldap/servers/slapd/sslerrstrs.h > --- trunk~/ldap/servers/slapd/sslerrstrs.h 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/slapd/sslerrstrs.h 2010-01-24 14:57:28.000000000 +0100 > @@ -256,7 +256,7 @@ > "SSL peer was not expecting a handshake message it received.") > > ER3(SSL_ERROR_DECOMPRESSION_FAILURE_ALERT , (SSL_ERROR_BASE + 60), > -"SSL peer was unable to succesfully decompress an SSL record it received.") > +"SSL peer was unable to successfully decompress an SSL record it received.") > > ER3(SSL_ERROR_HANDSHAKE_FAILURE_ALERT , (SSL_ERROR_BASE + 61), > "SSL peer was unable to negotiate an acceptable set of security parameters.") > diff -urNad trunk~/ldap/servers/slapd/uniqueidgen.c trunk/ldap/servers/slapd/uniqueidgen.c > --- trunk~/ldap/servers/slapd/uniqueidgen.c 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/ldap/servers/slapd/uniqueidgen.c 2010-01-24 14:57:28.000000000 +0100 > @@ -119,7 +119,7 @@ > if (uId == NULL) > { > slapi_log_error (SLAPI_LOG_FATAL, MODULE, "uniqueIDGenerate: " > - "NULL paramter is passed to the function.\n"); > + "NULL parameter is passed to the function.\n"); > return UID_BADDATA; > } > > @@ -179,7 +179,7 @@ > if (uId == NULL || uIdBase == NULL || name == NULL || namelen <= 0) > { > slapi_log_error (SLAPI_LOG_FATAL, MODULE, "uniqueIDGenerateMT: " > - "invalid paramter is passed to the function.\n"); > + "invalid parameter is passed to the function.\n"); > return UID_BADDATA; > } > > diff -urNad trunk~/man/man1/cl-dump.1 trunk/man/man1/cl-dump.1 > --- trunk~/man/man1/cl-dump.1 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/man/man1/cl-dump.1 2010-01-24 14:57:28.000000000 +0100 > @@ -63,7 +63,7 @@ > .TP > .B \-r replica\-roots > Specify replica roots whose changelog you want to dump. The replica > -roots may be seperated by comma. All the replica roots would be > +roots may be separated by comma. All the replica roots would be > dumped if the option is omitted. > .TP > .B \-v > diff -urNad trunk~/man/man1/logconv.pl.1 trunk/man/man1/logconv.pl.1 > --- trunk~/man/man1/logconv.pl.1 2010-01-12 19:54:28.000000000 +0100 > +++ trunk/man/man1/logconv.pl.1 2010-01-24 14:57:28.000000000 +0100 > @@ -45,11 +45,11 @@ > Print version of the tool > .TP > .B \fB\-S\fR <time to begin analyzing logfile from> > -Time to begin analyzing logile from > +Time to begin analyzing logfile from > E.g. [28/Mar/2002:13:14:22 \fB\-0800]\fR > .TP > .B \fB\-E\fR <time to stop analyzing logfile> > -Time to stop analyzing logile from > +Time to stop analyzing logfile from > E.g. [28/Mar/2002:13:24:62 \fB\-0800]\fR > .TP > \fB\-V\fR <enable verbose output \- includes all stats listed below> > > > > -- > 389-devel mailing list > 389-devel@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/389-devel > -- 389-devel mailing list 389-devel@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/389-devel