diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2004-11-19 11:09:55 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2004-11-19 11:09:55 +0000 |
commit | df4d27d7532268a278668983fe11c7f1d384227e (patch) | |
tree | 917d3bb6793afc2dc650b21429d1929ae1bb6f27 /template.h | |
parent | 68a33eaca9d98428904b87fddc86a90396af3231 (diff) | |
download | rsyslog-df4d27d7532268a278668983fe11c7f1d384227e.tar.gz rsyslog-df4d27d7532268a278668983fe11c7f1d384227e.tar.xz rsyslog-df4d27d7532268a278668983fe11c7f1d384227e.zip |
fixing upload error - template parser also ok
Diffstat (limited to 'template.h')
-rw-r--r-- | template.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,7 +23,9 @@ struct templateEntry { char *pConstant; /* pointer to constant value */ int iLenConstant; /* its length */ } constant; - char *pPropRepl; /* pointer to property replacer string */ + struct { + char *pPropRepl; /* pointer to property replacer string */ + } field; } data; }; |