1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

Update to 0.92.

This commit is contained in:
Maxim Sobolev 2004-06-10 16:23:58 +00:00
parent 1bb5258172
commit b1daff3dad
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111211
3 changed files with 27 additions and 4 deletions

View File

@ -6,11 +6,11 @@
#
PORTNAME= stund
PORTVERSION= 0.91
PORTVERSION= 0.92
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= stun
DISTNAME= ${PORTNAME}_${PORTVERSION}_Feb21
DISTNAME= ${PORTNAME}_${PORTVERSION}_Jun06
EXTRACT_SUFX= .tgz
MAINTAINER= sobomax@FreeBSD.org

View File

@ -1,2 +1,2 @@
MD5 (stund_0.91_Feb21.tgz) = 0349e688b4dfdef97feb1e150f16d8e0
SIZE (stund_0.91_Feb21.tgz) = 82402
MD5 (stund_0.92_Jun06.tgz) = bdf6c54a217d5696c84c783655636833
SIZE (stund_0.92_Jun06.tgz) = 82725

View File

@ -0,0 +1,23 @@
$FreeBSD$
--- server.cxx 2004/06/10 15:25:17 1.1
+++ server.cxx 2004/06/10 15:26:05
@@ -172,7 +172,7 @@
#if defined(WIN32)
int pid=0;
- if ( background )
+ if ( !background )
{
cerr << "The -b background option does not work in windows" << endl;
exit(-1);
@@ -180,7 +180,7 @@
#else
pid_t pid=0;
- if ( background )
+ if ( !background )
{
pid_t pid = fork();