diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-07 15:59:52 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-07 15:59:52 +0000 |
commit | 0fa199ef69450a16cf6df01e0644523827c70bfb (patch) | |
tree | 59ca9af361c9621daab2b763109e03d4efbd6498 /omfile.c | |
parent | 307f0893e1e589662fca1176050d96d5bfa9a367 (diff) | |
download | rsyslog-0fa199ef69450a16cf6df01e0644523827c70bfb.tar.gz rsyslog-0fa199ef69450a16cf6df01e0644523827c70bfb.tar.xz rsyslog-0fa199ef69450a16cf6df01e0644523827c70bfb.zip |
cleaned up some signed/unsinged char issuesv1-19-5
Diffstat (limited to 'omfile.c')
-rw-r--r-- | omfile.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -79,7 +79,7 @@ static int bCreateDirs; /* auto-create directories for dynaFiles: 0 - no, 1 - ye /* end globals for default values */ typedef struct _instanceData { - char f_fname[MAXFNAME];/* file or template name (display only) */ + uchar f_fname[MAXFNAME];/* file or template name (display only) */ short fd; /* file descriptor for (current) file */ enum { eTypeFILE, @@ -230,7 +230,7 @@ static rsRetVal cflineParseOutchannel(instanceData *pData, uchar* p, omodStringR } /* OK, we finally got a correct template. So let's use it... */ - strncpy(pData->f_fname, (char*) pOch->pszFileTemplate, MAXFNAME); + strncpy((char*) pData->f_fname, (char*) pOch->pszFileTemplate, MAXFNAME); pData->f_sizeLimit = pOch->uSizeLimit; /* WARNING: It is dangerous "just" to pass the pointer. As we * never rebuild the output channel description, this is acceptable here. @@ -287,7 +287,7 @@ int resolveFileSizeLimit(instanceData *pData) execProg(pCmd, 1, pParams); - pData->fd = open(pData->f_fname, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY, + pData->fd = open((char*) pData->f_fname, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY, pData->fCreateMode); actualFileSize = lseek(pData->fd, 0, SEEK_END); @@ -575,10 +575,10 @@ again: #else && e == EBADF) { #endif - pData->fd = open(pData->f_fname, O_WRONLY|O_APPEND|O_NOCTTY); + pData->fd = open((char*) pData->f_fname, O_WRONLY|O_APPEND|O_NOCTTY); if (pData->fd < 0) { iRet = RS_RET_DISABLE_ACTION; - logerror(pData->f_fname); + logerror((char*) pData->f_fname); } else { untty(); goto again; @@ -586,7 +586,7 @@ again: } else { iRet = RS_RET_DISABLE_ACTION; errno = e; - logerror(pData->f_fname); + logerror((char*) pData->f_fname); } } else if (pData->bSyncFile) fsync(pData->fd); @@ -677,7 +677,7 @@ CODESTARTparseSelectorAct pData->bDynamicName = 0; pData->fCreateMode = fCreateMode; /* preserve current setting */ pData->fDirCreateMode = fDirCreateMode; /* preserve current setting */ - pData->fd = open(pData->f_fname, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY, + pData->fd = open((char*) pData->f_fname, O_WRONLY|O_APPEND|O_CREAT|O_NOCTTY, pData->fCreateMode); } break; @@ -693,7 +693,7 @@ CODESTARTparseSelectorAct /* "filename" is actually a template name, we need this as string 1. So let's add it * to the pOMSR. -- rgerhards, 2007-07-27 */ - if((iRet = OMSRsetEntry(*ppOMSR, 1, (uchar*)strdup(pData->f_fname), OMSR_NO_RQD_TPL_OPTS)) != RS_RET_OK) + if((iRet = OMSRsetEntry(*ppOMSR, 1, (uchar*)strdup((char*) pData->f_fname), OMSR_NO_RQD_TPL_OPTS)) != RS_RET_OK) break; pData->bDynamicName = 1; @@ -747,7 +747,7 @@ CODESTARTparseSelectorAct pData->dirGID = dirGID; if(pData->fileType == eTypePIPE) { - pData->fd = open(pData->f_fname, O_RDWR|O_NONBLOCK); + pData->fd = open((char*) pData->f_fname, O_RDWR|O_NONBLOCK); } else { prepareFile(pData, pData->f_fname); } @@ -755,7 +755,7 @@ CODESTARTparseSelectorAct if ( pData->fd < 0 ){ pData->fd = -1; dbgprintf("Error opening log file: %s\n", pData->f_fname); - logerror(pData->f_fname); + logerror((char*) pData->f_fname); break; } if (isatty(pData->fd)) { |