diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2003-02-28 14:55:42 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2003-02-28 14:55:42 +0000 |
commit | 393605fffbfc1b5cf08e668da62ea1c8370b9eee (patch) | |
tree | e1a6ef4ffc0f46d03cfd74cb2f8f95297c0bf52b | |
parent | 8dfcf896b0e42ac51bff6353df2f77304fcd2b3b (diff) |
Use dyndns as the default update system.
PR: 48428
Submitted by: Christian Lackas <delta@lackas.net>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=76638
-rw-r--r-- | dns/ddup/Makefile | 2 | ||||
-rw-r--r-- | dns/ddup/files/patch-update.c | 4 | ||||
-rw-r--r-- | net/ddup/Makefile | 2 | ||||
-rw-r--r-- | net/ddup/files/patch-update.c | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/dns/ddup/Makefile b/dns/ddup/Makefile index 6b7bd433e907..856b44d34b76 100644 --- a/dns/ddup/Makefile +++ b/dns/ddup/Makefile @@ -7,7 +7,7 @@ PORTNAME= ddup PORTVERSION= 3.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= ${MASTER_SITES_LOCAL} DISTNAME= ${PORTNAME}-${PORTVERSION}-unix diff --git a/dns/ddup/files/patch-update.c b/dns/ddup/files/patch-update.c index 6e84f17c7d06..52674af985e7 100644 --- a/dns/ddup/files/patch-update.c +++ b/dns/ddup/files/patch-update.c @@ -17,10 +17,10 @@ - else - strcat(buf_out, "dyn"); + strcat(buf_out, "statdns"); -+ else if (dynamic_flag) -+ strcat(buf_out, "dyndns"); + else if (custom_flag) + strcat(buf_out, "custom"); ++ else ++ strcat(buf_out, "dyndns"); - strcat(buf_out, "dns&hostname="); + diff --git a/net/ddup/Makefile b/net/ddup/Makefile index 6b7bd433e907..856b44d34b76 100644 --- a/net/ddup/Makefile +++ b/net/ddup/Makefile @@ -7,7 +7,7 @@ PORTNAME= ddup PORTVERSION= 3.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= ${MASTER_SITES_LOCAL} DISTNAME= ${PORTNAME}-${PORTVERSION}-unix diff --git a/net/ddup/files/patch-update.c b/net/ddup/files/patch-update.c index 6e84f17c7d06..52674af985e7 100644 --- a/net/ddup/files/patch-update.c +++ b/net/ddup/files/patch-update.c @@ -17,10 +17,10 @@ - else - strcat(buf_out, "dyn"); + strcat(buf_out, "statdns"); -+ else if (dynamic_flag) -+ strcat(buf_out, "dyndns"); + else if (custom_flag) + strcat(buf_out, "custom"); ++ else ++ strcat(buf_out, "dyndns"); - strcat(buf_out, "dns&hostname="); + |