Skip to content

Commit

Permalink
Releasing v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SilentVoid13 committed Feb 6, 2020
1 parent 08a630d commit 42d450a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/staticlibs)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/staticlibs)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

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

### Includes ###

Expand Down
Binary file modified bin/Silent_Pass.exe
Binary file not shown.
Binary file modified bin/Silent_Pass_x32
Binary file not shown.
Binary file modified bin/Silent_Pass_x64
Binary file not shown.
3 changes: 3 additions & 0 deletions includes/xml.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#ifndef XML_H
#define XML_H

#include <stdio.h>
#include <string.h>

#include <libxml/xmlreader.h>

xmlNodePtr retrieve_xml_node(xmlNodePtr cur, char *node_name);
Expand Down
1 change: 0 additions & 1 deletion src/filezilla.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ int parse_xml_password(xmlDocPtr doc, xmlNodePtr cur, const char *output_file, c
char *cipher_password = NULL;
char *plaintext_password = NULL;
char port[6] = {-1};
char arg[MAX_ARGUMENT];

while(cur != NULL) {
if (cur->type == XML_ELEMENT_NODE) {
Expand Down

0 comments on commit 42d450a

Please sign in to comment.