Skip to content

Commit

Permalink
typo fix: paramter → parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mbiebl committed Jun 8, 2015
1 parent 3739e6c commit 6fbacdc
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion plugins/imfile/imfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ pollFile(lstn_t *pLstn, int *pbHadFileData)
#pragma GCC diagnostic warning "-Wempty-body"


/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down
2 changes: 1 addition & 1 deletion plugins/imptcp/imptcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ closeSess(ptcpsess_t *pSess)
}


/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down
2 changes: 1 addition & 1 deletion plugins/imrelp/imrelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ onSyslogRcv(void *pUsr, uchar *pHostname, uchar *pIP, uchar *msg, size_t lenMsg)

/* ------------------------------ end callbacks ------------------------------ */

/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down
2 changes: 1 addition & 1 deletion plugins/imtcp/imtcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ setPermittedPeer(void __attribute__((unused)) *pVal, uchar *pszID)
}


/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down
6 changes: 3 additions & 3 deletions plugins/imudp/imudp.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ static struct cnfparamblk inppblk =

#include "im-helper.h" /* must be included AFTER the type definitions! */

/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down Expand Up @@ -881,14 +881,14 @@ createListner(es_str_t *port, struct cnfparamvals *pvals)
} else if(!strcmp(inppblk.descr[i].name, "name")) {
if(inst->inputname != NULL) {
errmsg.LogError(0, RS_RET_INVALID_PARAMS, "imudp: name and inputname "
"paramter specified - only one can be used");
"parameter specified - only one can be used");
ABORT_FINALIZE(RS_RET_INVALID_PARAMS);
}
inst->inputname = (uchar*)es_str2cstr(pvals[i].val.d.estr, NULL);
} else if(!strcmp(inppblk.descr[i].name, "name.appendport")) {
if(bAppendPortUsed) {
errmsg.LogError(0, RS_RET_INVALID_PARAMS, "imudp: name.appendport and "
"inputname.appendport paramter specified - only one can be used");
"inputname.appendport parameter specified - only one can be used");
ABORT_FINALIZE(RS_RET_INVALID_PARAMS);
}
inst->bAppendPortToInpname = (int) pvals[i].val.d.n;
Expand Down
2 changes: 1 addition & 1 deletion plugins/pmciscoios/pmciscoios.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ CODESTARTisCompatibleWithFeature
ENDisCompatibleWithFeature


/* create input instance, set default paramters, and
/* create input instance, set default parameters, and
* add it to the list of instances.
*/
static rsRetVal
Expand Down
2 changes: 1 addition & 1 deletion runtime/cfsysline.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ static rsRetVal cslcAddHdlr(cslCmd_t *pThis, ecslCmdHdrlType eType, rsRetVal (*p
* Parameter permitted has been added to support the v2 config system. With it,
* we can tell the legacy system (us here!) to check if a config directive is
* still permitted. For example, the v2 system will disable module global
* paramters if the are supplied via the native v2 callbacks. In order not
* parameters if the are supplied via the native v2 callbacks. In order not
* to break exisiting modules, we have renamed the rgCfSysLinHdlr routine to
* version 2 and added a new one with the original name. It just calls the
* v2 function and supplies a "don't care (NULL)" pointer as this argument.
Expand Down
2 changes: 1 addition & 1 deletion runtime/librsgt_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ rsgt_objfree(uint16_t tlvtype, void *obj)
/**
* Read block parameters. This detects if the block contains the
* individual log hashes, the intermediate hashes and the overall
* block paramters (from the signature block). As we do not have any
* block parameters (from the signature block). As we do not have any
* begin of block record, we do not know e.g. the hash algorithm or IV
* until reading the block signature record. And because the file is
* purely sequential and variable size, we need to read all records up to
Expand Down
2 changes: 1 addition & 1 deletion runtime/rsconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ struct globals_s {
int bReduceRepeatMsgs; /* reduce repeated message - 0 - no, 1 - yes */

//TODO: other representation for main queue? Or just load it differently?
queuecnf_t mainQ; /* main queue paramters */
queuecnf_t mainQ; /* main queue parameters */
};

/* (global) defaults are global in the sense that they are accessible
Expand Down
2 changes: 1 addition & 1 deletion runtime/rsyslog.h
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ extern int default_thr_sched_policy;
* absolutely necessary - all output plugins need to be changed!
*
* If a change is "just" for internal working, consider adding a
* separate paramter outside of this structure. Of course, it is
* separate parameter outside of this structure. Of course, it is
* best to avoid this as well ;-)
* rgerhards, 2013-12-04
*/
Expand Down

0 comments on commit 6fbacdc

Please sign in to comment.