From a4196945fc20a7392f578452ad4f12604c94d0f4 Mon Sep 17 00:00:00 2001 From: Thomas Ries Date: Sat, 26 Jun 2004 11:22:02 +0000 Subject: [PATCH] - Released 0.5.7 --- RELNOTES | 11 ++++++++++- doc/ReleaseProcedure.txt | 25 +++++++++++++++++++++++++ src/sip_utils.c | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 doc/ReleaseProcedure.txt diff --git a/RELNOTES b/RELNOTES index f6d78d9..9088db0 100644 --- a/RELNOTES +++ b/RELNOTES @@ -2,6 +2,8 @@ Release Notes for siproxd-0.5.7 =============================== Major changes since 0.5.6: + - more configuration examples + - various bugfixes General Overview: - SIP (RFC3261) Proxy for SIP based softphones hidden behind a @@ -76,9 +78,16 @@ distribution I'd be happy to get a short notice. ----- -md5sum for siproxd-0.5.7.tar.gz: +md5sum for siproxd-0.5.7.tar.gz: 9f2e08f1b808fa96e2a4434377b11e10 GnuPG signature for siproxd-0.5.7.tar.gz archive: +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.3 (GNU/Linux) + +iD8DBQBA3VwyCfzBioe83JQRAlpDAKC6FAMnx5GlqsIobSH513SfnTGVcgCgtC5w +ETgaj/Hwc5Vjtzw2F9ydIfk= +=XPRD +-----END PGP SIGNATURE----- GnuPG: pub 1024D/87BCDC94 2000-03-19 Thomas Ries diff --git a/doc/ReleaseProcedure.txt b/doc/ReleaseProcedure.txt new file mode 100644 index 0000000..b227f74 --- /dev/null +++ b/doc/ReleaseProcedure.txt @@ -0,0 +1,25 @@ +The following procedure shall be used to make a new release: + +Make the release: +- check in all tested changes +- update ChangeLog +- update RELNOTES + Changes since last version + General Overview +- $ make dist +- verify building on the supported plattforms (SF compile farm) + - FreeBSD + - OpenBSD + - SunOS + - Mac OS +- $ make dist +- calculate MD5 checksum & GPG +- update RELNOTES +- check in outstanding changes +- create CVS tag (e.g. $ cvs rtag rel_0_5_7 siproxd) +- publish on SF.net + +Open new working release: +- change version number in configure.in +- ChangeLog +- RELNOTES diff --git a/src/sip_utils.c b/src/sip_utils.c index 1b90db6..4240600 100644 --- a/src/sip_utils.c +++ b/src/sip_utils.c @@ -390,7 +390,7 @@ mismatch: */ int is_sipuri_local (sip_ticket_t *ticket) { osip_message_t *sip=ticket->sipmsg; - int sts, found; + int found; struct in_addr addr_uri, addr_myself; char *my_interfaces[]= { configuration.inbound_if, configuration.outbound_if, (char*)-1 };