Skip to content

Commit 42d450a

Browse files
committed
Releasing v0.2
1 parent 08a630d commit 42d450a

File tree

6 files changed

+4
-2
lines changed

6 files changed

+4
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/staticlibs)
88
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/staticlibs)
99
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
1010

11-
set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} "-Wall -Wextra -Wno-pointer-sign -DLIBXML_STATIC")
11+
#set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} "-Wall -Wextra -Wno-pointer-sign")
1212

1313
### Includes ###
1414

bin/Silent_Pass.exe

0 Bytes
Binary file not shown.

bin/Silent_Pass_x32

9.5 KB
Binary file not shown.

bin/Silent_Pass_x64

5.91 KB
Binary file not shown.

includes/xml.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#ifndef XML_H
22
#define XML_H
33

4+
#include <stdio.h>
5+
#include <string.h>
6+
47
#include <libxml/xmlreader.h>
58

69
xmlNodePtr retrieve_xml_node(xmlNodePtr cur, char *node_name);

src/filezilla.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ int parse_xml_password(xmlDocPtr doc, xmlNodePtr cur, const char *output_file, c
7575
char *cipher_password = NULL;
7676
char *plaintext_password = NULL;
7777
char port[6] = {-1};
78-
char arg[MAX_ARGUMENT];
7978

8079
while(cur != NULL) {
8180
if (cur->type == XML_ELEMENT_NODE) {

0 commit comments

Comments
 (0)