Skip to content

Commit

Permalink
Don't warn about the non-use of some arguments to rsvp_obj_print() if we
Browse files Browse the repository at this point in the history
don't have libcrypto, as we can't use them if we don't.
  • Loading branch information
guyharris committed Jan 6, 2010
1 parent a10a7c2 commit 5d2acbc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion print-rsvp.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,15 @@ rsvp_intserv_print(const u_char *tptr, u_short obj_tlen) {
}

static int
rsvp_obj_print (const u_char *pptr, u_int plen, const u_char *tptr,
rsvp_obj_print (const u_char *pptr
#ifndef HAVE_LIBCRYPTO
_U_
#endif
, u_int plen
#ifndef HAVE_LIBCRYPTO
_U_
#endif
, const u_char *tptr,
const char *ident, u_int tlen) {

const struct rsvp_object_header *rsvp_obj_header;
Expand Down

0 comments on commit 5d2acbc

Please sign in to comment.