Skip to content

Commit

Permalink
output.c: fix SHA1 include
Browse files Browse the repository at this point in the history
  • Loading branch information
esmil committed Apr 22, 2009
1 parent e89227f commit 49e52d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions output.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#include <stdio.h> /* printf() etc. */
#include <string.h> /* strlen() etc. */
#include <time.h> /* time() */
#ifdef USE_OPENSSL
#include <openssl/sha.h> /* SHA_DIGEST_LENGTH */
#else
#include <stdint.h>
#include "sha1.h"
#endif

#include "mktorrent.h"

Expand Down

0 comments on commit 49e52d4

Please sign in to comment.