Skip to content

Commit

Permalink
Merge pull request #289 from linuxmaniac/vseva/remove_datetime
Browse files Browse the repository at this point in the history
Remove hardcoded build datetime from binary. Begin supporting reproducible builds.

Closes #286.

Thanks @linuxmaniac.
  • Loading branch information
wdoekes committed Feb 15, 2017
2 parents a7c1bb6 + a81dac2 commit 91e3dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sipp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ int main(int argc, char *argv[])
exit(EXIT_OTHER);
case SIPP_OPTION_VERSION:
printf("\n %s.\n\n",
/* SIPp v1.2.3-TLS-PCAP built YMD, HMS */
/* SIPp v1.2.3-TLS-PCAP */
"SIPp " SIPP_VERSION
#ifdef USE_OPENSSL
"-TLS"
Expand All @@ -1160,7 +1160,7 @@ int main(int argc, char *argv[])
#ifdef RTP_STREAM
"-RTPSTREAM"
#endif
" built " __DATE__ ", " __TIME__);
);

printf
(" This program is free software; you can redistribute it and/or\n"
Expand Down

0 comments on commit 91e3dd4

Please sign in to comment.