Skip to content

Commit

Permalink
Merge pull request #24 from mattslot/master
Browse files Browse the repository at this point in the history
Explicit parameter types for static prototypes
  • Loading branch information
adulau authored Sep 22, 2019
2 parents f10e4d7 + 29f1b0b commit a6c098f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssl/ssl.enums.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include <openssl/ssl.h>
#endif
#include "ssl.enums.h"
static int decode_extension(ssl,dir,seg,data);
static int decode_server_name(ssl,dir,seg,data);
static int decode_extension(ssl_obj *ssl, int dir, segment *seg, Data *data);
static int decode_server_name(ssl_obj *ssl, int dir, segment *seg, Data *data);
static int decode_ContentType_ChangeCipherSpec(ssl,dir,seg,data)
ssl_obj *ssl;
int dir;
Expand Down

0 comments on commit a6c098f

Please sign in to comment.