Small updates.

This commit is contained in:
Guus Sliepen 2002-09-04 19:57:53 +00:00
parent d4277e9ee8
commit 6fdaa8e1ca
3 changed files with 10 additions and 10 deletions

View 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)

View file

@ -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

View 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';