summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/GPGw/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/GPGw/tools.c')
-rw-r--r--plugins/CryptoPP/GPGw/tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CryptoPP/GPGw/tools.c b/plugins/CryptoPP/GPGw/tools.c
index ee7adde761..002f18824d 100644
--- a/plugins/CryptoPP/GPGw/tools.c
+++ b/plugins/CryptoPP/GPGw/tools.c
@@ -78,7 +78,7 @@ void appendText(char **abuffer, const char *atext, int atextsize)
{
int size;
- if(*abuffer==NULL) size=0;
+ if (*abuffer==NULL) size=0;
else size=strlen(*abuffer);
size++; // abschliessende 0
if(atextsize==0) atextsize=strlen(atext);