Drop some unused variable.

This commit is contained in:
Arnaud Cornet 2009-01-06 16:28:06 +01:00
parent 41c0a5a9c6
commit eb57d9683d
2 changed files with 0 additions and 3 deletions

View File

@ -1522,7 +1522,6 @@ void adm_info_user(struct link_client *ic, const char *name)
noroom:
buf[RET_STR_LEN] = 0;
bip_notify(ic, "%s", buf);
t_written = 0;
#ifdef HAVE_LIBSSL
bip_notify(ic, "SSL check mode '%s', stored into '%s'",

View File

@ -130,13 +130,11 @@ void replace_var(char *str, char *var, char *value, unsigned int max)
char *log_build_filename(log_t *logdata, const char *destination)
{
char *logfile, year[5], day[3], month[3], *tmp, *logdir;
int log_format_len;
struct tm *now;
time_t s;
char *dest = bip_strdup(destination);
strtolower(dest);
log_format_len = strlen(conf_log_format);
logfile = (char *)bip_malloc(MAX_PATH_LEN + 1);
time(&s);