diff options
author | Michael Biebl <biebl@debian.org> | 2013-05-15 18:11:39 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-05-15 18:11:39 +0200 |
commit | 91bc2744cf85809ac50535129ba4a3c4faae081b (patch) | |
tree | 9a447d9be1ce5e082e8c964215ad01573bab3b4e /runtime/librsgt.c | |
parent | d5e3be17e7d29f5464bf8ed0130e92928ad099e8 (diff) | |
download | rsyslog-91bc2744cf85809ac50535129ba4a3c4faae081b.tar.gz |
Imported Upstream version 7.3.15upstream/7.3.15
Diffstat (limited to 'runtime/librsgt.c')
-rw-r--r-- | runtime/librsgt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/librsgt.c b/runtime/librsgt.c index ae0b0df..85fc774 100644 --- a/runtime/librsgt.c +++ b/runtime/librsgt.c @@ -296,7 +296,7 @@ tlv16Write(gtfile gf, int flags, int tlvtype, uint16_t len) { uint16_t typ; int r; - typ = ((flags|1) << 13)|tlvtype; + typ = ((flags|1) << 15)|tlvtype; r = tlvbufAddOctet(gf, typ >> 8); if(r != 0) goto done; r = tlvbufAddOctet(gf, typ & 0xff); |