27 lines
930 B
Diff
27 lines
930 B
Diff
From e52f9be20e566e507e77421f1243f51aa2fe8e55 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Dan=20Vr=C3=A1til?= <dvratil@redhat.com>
|
|
Date: Mon, 25 Aug 2014 14:35:14 +0200
|
|
Subject: [PATCH 04/30] Fix typo in if condition
|
|
|
|
BUG: 338483
|
|
FIXED-IN: 1.13.1
|
|
---
|
|
server/src/handler/akappend.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/server/src/handler/akappend.cpp b/server/src/handler/akappend.cpp
|
|
index 43f03ba..ad3682f 100644
|
|
--- a/server/src/handler/akappend.cpp
|
|
+++ b/server/src/handler/akappend.cpp
|
|
@@ -380,7 +380,7 @@ bool AkAppend::parseStream()
|
|
if ( itemFlags.incremental ) {
|
|
throw HandlerException( "Incremental flags changes are not allowed in AK-APPEND" );
|
|
}
|
|
- if ( itemTagsRID.incremental || itemTagsRID.incremental ) {
|
|
+ if ( itemTagsRID.incremental || itemTagsGID.incremental ) {
|
|
throw HandlerException( "Incremental tags changes are not allowed in AK-APPEND" );
|
|
}
|
|
|
|
--
|
|
2.1.0
|
|
|