Skip to content

Commit

Permalink
- Spelling checked
Browse files Browse the repository at this point in the history
- READMEs updated
  • Loading branch information
janakj committed Aug 24, 2004
1 parent 55911e9 commit 53c7e0f
Show file tree
Hide file tree
Showing 118 changed files with 348 additions and 348 deletions.
8 changes: 4 additions & 4 deletions ISSUES
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Test: compile test/re_test.c (gcc re_test.c -o re_test) and try
echo -e "From:\nTo:" |./re_test -v '^From'
if your system is ok you should see 1 match, if not (and
your libc has this bug), 0 matches.
Workarround: ?upgrade?
Workaround: ?upgrade?
--------------------------------------------------------------
Desc: textops REs match newline in constructs such [^@]
Ser version: all
Expand All @@ -33,7 +33,7 @@ Test: compile test/re_test.c (gcc re_test.c -o re_test) and try
echo -e "From:\nTo:" |./re_test -v '[^.]+'
if your system is ok you should see 2 matches, if not (and
your libc has this bug), only 1 match.
Workarround: - use an older or fixed libc6 or avoid [^something]
Workaround: - use an older or fixed libc6 or avoid [^something]
- rewrite [^something] as [^something[:cntrl:]]
---------------------------------------------------------------
Desc: memory leaks occurs if SIP requests are processed in which
Expand Down Expand Up @@ -183,7 +183,7 @@ CVS status: fixed
---------------------------------------------------------------
Desc: serctl add ... returns "user exists"
BugId: 374
Workaround: either use serweb for addding new users or update
Workaround: either use serweb for adding new users or update
the serctl utility from CVS; the fixed version is at
http://www.iptel.org/ser/issues/374/
Bug reason: phplib_id ignored in sc
Expand Down Expand Up @@ -218,7 +218,7 @@ Cvs status: not fixed

----------------------------------------------------------------
Desc: ser won't run on linux kernels <2.4 (fails with EINVAL when
intializing the shared memory)
initializing the shared memory)
BugId: n/a
Ser version: 0.8.8, 0.8.9, 0.8.10
Workaround: Upgrade to a 2.4.* kernel (older kernels don't support shared
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exclude_modules?= cpl ext extcmd \
postgres snmp \
im \
jabber \
cpl-c pa \
cpl-c \
auth_radius group_radius uri_radius
# always exclude the CVS dir
override exclude_modules+= CVS $(skip_modules)
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ I. About SIP Express Router (ser)
II. Feature List
III. About iptel.org
IV. Obtaining Help
V. Contact, Licencing and More Information
V. Contact, Licensing and More Information


SIP Express Router (SER) is an industrial-strength, free VoIP
Expand Down
4 changes: 2 additions & 2 deletions action.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -93,7 +93,7 @@ int do_action(struct action* a, struct sip_msg* msg)
int proto;

/* reset the value of error to E_UNSPEC so avoid unknowledgable
functions to return with errror (status<0) and not setting it
functions to return with error (status<0) and not setting it
leaving there previous error; cache the previous value though
for functions which want to process it */
prev_ser_error=ser_error;
Expand Down
2 changes: 1 addition & 1 deletion action.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* $Id$
*
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
2 changes: 1 addition & 1 deletion ccver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ -z "$NAME" ]
then
NAME="unknown"
VER="unknown"
MAJOR_VER="unkown"
MAJOR_VER="unknown"
fi


Expand Down
4 changes: 2 additions & 2 deletions cfg.lex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* scanner for cfg files
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -129,7 +129,7 @@ MAX_LEN "max_len"

/* condition keywords */
METHOD method
/* hack -- the second element in first line is referrable
/* hack -- the second element in first line is referable
as either uri or status; it only would makes sense to
call it "uri" from route{} and status from onreply_route{}
*/
Expand Down
6 changes: 3 additions & 3 deletions cfg.y
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* cfg grammar
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -325,7 +325,7 @@ statement: assign_stm
listen_id: ip { tmp=ip_addr2a($1);
if(tmp==0){
LOG(L_CRIT, "ERROR: cfg. parser: bad ip "
"addresss.\n");
"address.\n");
$$=0;
}else{
$$=pkg_malloc(strlen(tmp)+1);
Expand Down Expand Up @@ -1483,7 +1483,7 @@ cmd: FORWARD LPAREN host RPAREN { $$=mk_action( FORWARD_T,
| APPEND_BRANCH LPAREN STRING COMMA STRING RPAREN {
{ qvalue_t q;
if (str2q(&q, $5, strlen($5)) < 0) {
yyerror("bad arqument, q value expected");
yyerror("bad argument, q value expected");
}
$$=mk_action(APPEND_BRANCH_T, STRING_ST, NUMBER_ST, $3, (void *)q); }
}
Expand Down
2 changes: 1 addition & 1 deletion comp_defs.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
4 changes: 2 additions & 2 deletions config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -155,7 +155,7 @@
/* max length of the text of fifo 'print' command */
#define MAX_PRINT_TEXT 256

/* maximum length of Contact heder field in redirection replies */
/* maximum length of Contact header field in redirection replies */
#define MAX_REDIRECTION_LEN 512

/* used by FIFO statistics in module to terminate line;
Expand Down
2 changes: 1 addition & 1 deletion crc.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Crc - 32 + 16 BIT ANSI X3.66 + CCITT CRC checksum files
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
2 changes: 1 addition & 1 deletion daemonize.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
2 changes: 1 addition & 1 deletion daemonize.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
10 changes: 5 additions & 5 deletions data_lump.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* $Id$
*
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand All @@ -28,7 +28,7 @@
* --------
* 2003-01-19 support for duplication lump lists added (jiri)
* 2003-03-31 added subst lumps --they expand in ip addr, port a.s.o (andrei)
* 2003-04-01 added conditional lump suport functions (andrei)
* 2003-04-01 added conditional lump support functions (andrei)
* 2003-10-20 anchor_lump & del_lump will automatically choose the lump list
* based on msg->eoh comparisons (andrei)
* 2003-10-28 added extra checks (paranoia) for {anchor,del}_lump (andrei)
Expand Down Expand Up @@ -257,7 +257,7 @@ struct lump* insert_cond_lump_before( struct lump* before,


/* removes an already existing header/data lump */
/* WARNING: thist function adds the lump either to the msg->add_rm or
/* WARNING: this function adds the lump either to the msg->add_rm or
* msg->body_lumps list, depending on the offset being greater than msg->eoh,
* so msg->eoh must be parsed (parse with HDR_EOH) if you think your lump
* might affect the body!! */
Expand Down Expand Up @@ -313,7 +313,7 @@ struct lump* del_lump(struct sip_msg* msg, int offset, int len, int type)


/* add an anchor
* WARNING: thist function adds the lump either to the msg->add_rm or
* WARNING: this function adds the lump either to the msg->add_rm or
* msg->body_lumps list, depending on the offset being greater than msg->eoh,
* so msg->eoh must be parsed (parse with HDR_EOH) if you think your lump
* might affect the body!! */
Expand Down Expand Up @@ -513,7 +513,7 @@ void free_duped_lump_list(struct lump* l)
foo=r; r=r->before;
/* (+): if a new item was introduced to the shallow-ly
* duped list, remove it completely, preserve it
* othewise (it is still refered by original list)
* otherwise (it is still referred by original list)
*/
if (foo->flags!=LUMPFLAG_DUPED)
free_lump(foo);
Expand Down
2 changes: 1 addition & 1 deletion data_lump.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* adding/removing headers or any other data chunk from a message
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
4 changes: 2 additions & 2 deletions data_lump_rpl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* $Id$
*
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -45,7 +45,7 @@ struct lump_rpl* add_lump_rpl(struct sip_msg *msg, char *s, int len, int flags)
struct lump_rpl *lump = 0;
struct lump_rpl *foo;

/* some checkings */
/* some checking */
if ( (flags&(LUMP_RPL_HDR|LUMP_RPL_BODY))==(LUMP_RPL_HDR|LUMP_RPL_BODY)
|| (flags&(LUMP_RPL_HDR|LUMP_RPL_BODY))==0 || (flags&LUMP_RPL_SHMEM) ) {
LOG(L_ERR,"ERROR:add_lump_rpl: bad flags combination (%d)!\n",flags);
Expand Down
2 changes: 1 addition & 1 deletion data_lump_rpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* $Id$
*
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
2 changes: 1 addition & 1 deletion db/db.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
4 changes: 2 additions & 2 deletions db/db.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -135,7 +135,7 @@ typedef int (*db_update_f) (db_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _

typedef struct db_func {
db_use_table_f use_table; /* Specify table name */
db_init_f init; /* Initialize dabase connection */
db_init_f init; /* Initialize database connection */
db_close_f close; /* Close database connection */
db_query_f query; /* query a table */
db_raw_query_f raw_query; /* Raw query - SQL */
Expand Down
2 changes: 1 addition & 1 deletion db/db_con.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
18 changes: 9 additions & 9 deletions db/db_fifo.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down Expand Up @@ -219,7 +219,7 @@ static inline int parse_db_value( str *s, db_val_t *val, str **ret_s)
s->len -= n+2;
}

/* string has at least one caracter */
/* string has at least one character */
DBG("DEBUG:parse_db_value: value id <%.*s>\n",s->len,s->s);
if ( s->s[0]=='\"' && s->s[s->len-1]=='\"' && s->len!=1) {
/* can be DB_STR, DB_STRING, DB_BLOB */
Expand Down Expand Up @@ -265,11 +265,11 @@ static inline int parse_db_value( str *s, db_val_t *val, str **ret_s)
td.tm_yday = 0;
/* get year */
get_int( p, end, td.tm_year, n, "Missing year in date format",error);
td.tm_year -= 1900; /* corection */
td.tm_year -= 1900; /* correction */
if (*(p++)!='-') goto date_error;
/* get month */
get_int( p, end, td.tm_mon, n, "Missing month in date format",error);
td.tm_mon --; /* corection */
td.tm_mon --; /* correction */
if (*(p++)!='-') goto date_error;
/* get day */
get_int( p, end, td.tm_mday, n, "Missing day in date format",error);
Expand Down Expand Up @@ -369,7 +369,7 @@ static inline int get_avps( FILE *fifo , db_key_t *keys, db_op_t *ops,
/* read a new line */
line.s = buf;
if (read_line( line.s, MAX_SIZE_LINE, fifo, &line.len)!=1) {
double_log("Comamnd end when reading AVPs - missing . at after "
double_log("Command end when reading AVPs - missing . at after "
"AVP list?");
goto error;
}
Expand Down Expand Up @@ -650,7 +650,7 @@ int db_fifo( FILE *fifo, char *response_file )
nr2 = 0;

if (db_cmd==SELECT_CMD) {
/* read the colums to be fetched */
/* read the columns to be fetched */
if ( get_keys( fifo, keys1, &nr1, MAX_ARRAY)!=0 )
goto error;
} else if (db_cmd==UPDATE_CMD) {
Expand All @@ -666,7 +666,7 @@ int db_fifo( FILE *fifo, char *response_file )
/* all the operators must be '=' */
for(n=0;n<nr1;n++) {
if (ops1[n][0]!='=' || ops1[n][1]!='\0') {
double_log("Invalid operator in updated fileds (expected = )");
double_log("Invalid operator in updated fields (expected = )");
goto error1;
}
}/*end for*/
Expand Down Expand Up @@ -740,7 +740,7 @@ int db_fifo( FILE *fifo, char *response_file )
/* all the operators must be '=' in the first avp list */
for(n=0;n<nr1;n++) {
if (ops1[n][0]!='=' || ops1[n][1]!='\0') {
double_log("Invalid operator in updated fileds "
double_log("Invalid operator in updated fields "
"(expected = )");
goto error;
}
Expand Down Expand Up @@ -770,7 +770,7 @@ int db_fifo( FILE *fifo, char *response_file )
/* all the operators must be '=' */
for(n=0;n<nr2;n++) {
if (ops2[n][0]!='=' || ops2[n][1]!='\0') {
double_log("Invalid operator in inserted fileds "
double_log("Invalid operator in inserted fields "
"(expected = )");
goto error;
}
Expand Down
2 changes: 1 addition & 1 deletion db/db_fifo.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* $Id$
*
* Copyright (C) 2001-2003 Fhg Fokus
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
Expand Down
Loading

0 comments on commit 53c7e0f

Please sign in to comment.