Skip to content

Commit

Permalink
core: fix spelling errors catched by lintian #688
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Jun 29, 2016
1 parent 21c708b commit f75d737
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions lib/srdb1/db_ut.h
Expand Up @@ -42,7 +42,7 @@
*
* \param _s source value
* \param _v target value
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_str2int(const char* _s, int* _v);

Expand All @@ -52,7 +52,7 @@ int db_str2int(const char* _s, int* _v);
*
* \param _s source value
* \param _v target value
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_str2longlong(const char* _s, long long* _v);

Expand All @@ -62,7 +62,7 @@ int db_str2longlong(const char* _s, long long* _v);
*
* \param _s source value
* \param _v target value
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_str2double(const char* _s, double* _v);

Expand All @@ -73,7 +73,7 @@ int db_str2double(const char* _s, double* _v);
* \param _v source value
* \param _s target value
* \param _l available length and target length
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_int2str(int _v, char* _s, int* _l);

Expand All @@ -84,7 +84,7 @@ int db_int2str(int _v, char* _s, int* _l);
* \param _v source value
* \param _s target value
* \param _l available length and target length
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_longlong2str(long long _v, char* _s, int* _l);

Expand All @@ -95,7 +95,7 @@ int db_longlong2str(long long _v, char* _s, int* _l);
* \param _v source value
* \param _s target value
* \param _l available length and target length
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_double2str(double _v, char* _s, int* _l);

Expand All @@ -106,7 +106,7 @@ int db_double2str(double _v, char* _s, int* _l);
* \param _v source value
* \param _s target value
* \param _l available length and target length
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
* \todo This functions add quotes to the time value. This
* should be done in the val2str function, as some databases
* like db_berkeley don't need or like this at all.
Expand All @@ -120,7 +120,7 @@ int db_time2str_ex(time_t _v, char* _s, int* _l, int _qmode);
*
* \param _s source value
* \param _v target value
* \return zero on sucess, negative on conversion errors
* \return zero on success, negative on conversion errors
*/
int db_str2time(const char* _s, time_t* _v);

Expand Down
2 changes: 1 addition & 1 deletion lib/srdb2/schema/acc.xml
Expand Up @@ -17,7 +17,7 @@
table. SERWeb can query the table to display the list of placed calls.
</db:para>
<db:para>
SER records sucessful transactions (those replied with a 2xx final
SER records successful transactions (those replied with a 2xx final
response) into this table. SER never reads or updates rows in the table,
it only inserts new rows into the table. This table can potentially get
big. There will be 1-3 rows per call, depending on the configuration of
Expand Down

0 comments on commit f75d737

Please sign in to comment.