commit - 8b17579e608f60bb48094756107c7e500499ac5f
commit + 77faf14b29caf891c2014b0c8b009c0b60b036cd
blob - ef73614f0a93ad592172dc2296c05ad1ec5cb689
blob + 328bbff06324500dab8bb77cb7ba810f272572b6
--- src/ngircd/conf.c
+++ src/ngircd/conf.c
#include "portab.h"
-static char UNUSED id[] = "$Id: conf.c,v 1.75 2005/03/22 18:57:08 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.76 2005/04/16 09:23:01 fw Exp $";
#include "imp.h"
#include <assert.h>
LOCAL void
Handle_OPERATOR( int Line, char *Var, char *Arg )
{
- unsigned int len;
assert( Line > 0 );
assert( Var != NULL );
assert( Arg != NULL );
if( strcasecmp( Var, "Mask" ) == 0 )
{
if (Conf_Oper[Conf_Oper_Count - 1].mask) return; /* Hostname already configured */
- len = strlen( Arg ) + 1;
- Conf_Oper[Conf_Oper_Count - 1].mask = malloc( len );
+ Conf_Oper[Conf_Oper_Count - 1].mask = strdup( Arg );
if (! Conf_Oper[Conf_Oper_Count - 1].mask) {
Config_Error( LOG_ERR, "%s, line %d: Cannot allocate memory for operator mask: %s", NGIRCd_ConfFile, Line, strerror(errno) );
return;
}
- strlcpy( Conf_Oper[Conf_Oper_Count - 1].mask, Arg, len);
return;
}
Config_Error( LOG_ERR, "%s, line %d (section \"Operator\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
blob - 7020462d15083e44d99d2e2005787fdc8ff6bd35
blob + 06c6bae474ee52347de3966b824e5d9d2ab51326
--- src/portab/Makefile.am
+++ src/portab/Makefile.am
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
#
-# $Id: Makefile.am,v 1.7 2003/01/03 22:04:14 alex Exp $
+# $Id: Makefile.am,v 1.8 2005/04/16 09:23:01 fw Exp $
#
AUTOMAKE_OPTIONS = ansi2knr
noinst_LIBRARIES = libngportab.a
-libngportab_a_SOURCES = strlcpy.c vsnprintf.c
+libngportab_a_SOURCES = strlcpy.c strdup.c vsnprintf.c
check_PROGRAMS = portabtest
blob - 44e7c6c5fa7ff98eca91e1069f6ff9ced7d8b724
blob + 5f2ee3d04ea8c1f7a4ad194c141f1bce4fe47488
--- src/portab/portab.h
+++ src/portab/portab.h
* (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information.
*
- * $Id: portab.h,v 1.20 2005/04/09 18:27:16 alex Exp $
+ * $Id: portab.h,v 1.21 2005/04/16 09:23:01 fw Exp $
*
* Portability functions and declarations (header for libngbportab).
*/
extern size_t strlcpy PARAMS(( char *dst, const char *src, size_t size ));
#endif
+#ifndef HAVE_STRDUP
+extern char * strdup PARAMS(( const char *s ));
+#endif
+
#ifndef HAVE_VSNPRINTF
#include <stdarg.h>
extern int vsnprintf PARAMS(( char *str, size_t count, const char *fmt, va_list args ));