Small updates.
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 4 Sep 2002 19:57:53 +0000 (19:57 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 4 Sep 2002 19:57:53 +0000 (19:57 +0000)
configure.in
po/nl.po
src/protocol.c

index 9a584b7..b530e0c 100644 (file)
@@ -1,8 +1,8 @@
 dnl Process this file with autoconf to produce a configure script.
 
-dnl $Id: configure.in,v 1.13.2.55 2002/08/24 12:54:55 guus Exp $
+dnl $Id: configure.in,v 1.13.2.56 2002/09/04 19:57:53 guus Exp $
 
-AC_PREREQ(2.50)
+AC_PREREQ(2.53)
 AC_INIT(src/tincd.c)
 AM_INIT_AUTOMAKE(tinc, 1.0-cvs)
 AM_CONFIG_HEADER(config.h)
index 6c96705..e94fbb6 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: tinc 1.0-cvs\n"
-"POT-Creation-Date: 2002-09-04 18:33+0200\n"
+"POT-Creation-Date: 2002-09-04 18:47+0200\n"
 "PO-Revision-Date: 2002-09-04 18:33+0200\n"
 "Last-Translator: Guus Sliepen <guus@sliepen.eu.org>\n"
 "Language-Team: Dutch <vertaling@nl.linux.org>\n"
@@ -547,13 +547,13 @@ msgstr "Verzending %s naar %s (%s)"
 
 #: src/protocol.c:106
 #, c-format
-msgid "Broadcasting %s from %s (%s): %s"
-msgstr "Verspreiding %s van %s (%s): %s"
+msgid "Forwarding %s from %s (%s): %s"
+msgstr "Doorsturen %s van %s (%s): %s"
 
 #: src/protocol.c:108
 #, c-format
-msgid "Broadcasting %s from %s (%s)"
-msgstr "Verspreiding %s van %s (%s)"
+msgid "Forwarding %s from %s (%s)"
+msgstr "Doorsturen %s van %s (%s)"
 
 #: src/protocol.c:125
 #, c-format
index 4127f51..855c2b7 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: protocol.c,v 1.28.4.133 2002/09/04 16:26:44 guus Exp $
+    $Id: protocol.c,v 1.28.4.134 2002/09/04 19:57:53 guus Exp $
 */
 
 #include "config.h"
@@ -103,9 +103,9 @@ cp
     {
       sscanf(from->buffer, "%d", &request);
       if(debug_lvl >= DEBUG_META)
-        syslog(LOG_DEBUG, _("Broadcasting %s from %s (%s): %s"), request_name[request], from->name, from->hostname, from->buffer);
+        syslog(LOG_DEBUG, _("Forwarding %s from %s (%s): %s"), request_name[request], from->name, from->hostname, from->buffer);
       else
-        syslog(LOG_DEBUG, _("Broadcasting %s from %s (%s)"), request_name[request], from->name, from->hostname);
+        syslog(LOG_DEBUG, _("Forwarding %s from %s (%s)"), request_name[request], from->name, from->hostname);
     }
 
   from->buffer[from->reqlen - 1] = '\n';