forked from pool/aqbanking
19 lines
573 B
Diff
19 lines
573 B
Diff
|
--- src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp
|
||
|
+++ src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp
|
||
|
@@ -266,12 +266,12 @@
|
||
|
i++;
|
||
|
if (i>=argc)
|
||
|
return -1;
|
||
|
- if (argv[i]=="stderr")
|
||
|
+ if (strcmp(argv[i],"stderr")==0)
|
||
|
args.logType=GWEN_LoggerTypeConsole;
|
||
|
- else if (argv[i]=="file")
|
||
|
+ else if (strcmp(argv[i],"file")==0)
|
||
|
args.logType=GWEN_LoggerTypeFile;
|
||
|
#ifdef HAVE_SYSLOG_H
|
||
|
- else if (argv[i]=="syslog")
|
||
|
+ else if (strcmp(argv[i],"syslog")==0)
|
||
|
args.logType=GWEN_LoggerTypeSyslog;
|
||
|
#endif
|
||
|
else {
|