Remove some unused variables.

Found with llvm static analyzer.
This commit is contained in:
Jilles Tjoelker 2009-03-01 01:53:40 +01:00
parent d2d703a1d7
commit a6210c453a
3 changed files with 3 additions and 6 deletions

View File

@ -642,7 +642,6 @@ set_server_gecos(struct Client *client_p, const char *info)
{ {
char *p; char *p;
char *s; char *s;
char *t;
s = LOCAL_COPY(info); s = LOCAL_COPY(info);
@ -651,7 +650,7 @@ set_server_gecos(struct Client *client_p, const char *info)
*p = '\0'; *p = '\0';
/* check for a ] which would symbolise an [IP] */ /* check for a ] which would symbolise an [IP] */
if((t = strchr(s, ']'))) if(strchr(s, ']'))
{ {
/* set s to after the first space */ /* set s to after the first space */
if(p) if(p)

View File

@ -151,7 +151,6 @@ build_nicklist(struct Client *source_p, char *addbuf, char *delbuf, const char *
int lenadd; int lenadd;
int lendel; int lendel;
int del; int del;
struct Client *target_p;
char *n = LOCAL_COPY(nicks); char *n = LOCAL_COPY(nicks);
*addbuf = *delbuf = '\0'; *addbuf = *delbuf = '\0';
@ -166,7 +165,7 @@ build_nicklist(struct Client *source_p, char *addbuf, char *delbuf, const char *
name++; name++;
} }
if((target_p = find_named_person(name)) == NULL) if(find_named_person(name) == NULL)
{ {
sendto_one_numeric(source_p, ERR_NOSUCHNICK, sendto_one_numeric(source_p, ERR_NOSUCHNICK,
form_str(ERR_NOSUCHNICK), name); form_str(ERR_NOSUCHNICK), name);

View File

@ -96,11 +96,10 @@ static int
mo_kline(struct Client *client_p, struct Client *source_p, mo_kline(struct Client *client_p, struct Client *source_p,
int parc, const char **parv) int parc, const char **parv)
{ {
char def[] = "No Reason";
char user[USERLEN + 2]; char user[USERLEN + 2];
char host[HOSTLEN + 2]; char host[HOSTLEN + 2];
char buffer[IRCD_BUFSIZE]; char buffer[IRCD_BUFSIZE];
char *reason = def; char *reason;
char *oper_reason; char *oper_reason;
const char *current_date; const char *current_date;
const char *target_server = NULL; const char *target_server = NULL;