1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-21 23:18:00 -08:00

finger/mail: two trivial functions were missed in earlier ansi passes

This commit is contained in:
tb 2023-02-08 08:24:29 +00:00
parent e777735b49
commit ae17c7f76d
2 changed files with 4 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: net.c,v 1.14 2019/06/28 13:35:01 deraadt Exp $ */
/* $OpenBSD: net.c,v 1.15 2023/02/08 08:24:29 tb Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@ -45,8 +45,7 @@
#include "extern.h"
void
netfinger(name)
char *name;
netfinger(char *name)
{
FILE *fp;
int c, lastc;

View File

@ -1,4 +1,4 @@
/* $OpenBSD: cmd3.c,v 1.28 2019/06/28 13:35:01 deraadt Exp $ */
/* $OpenBSD: cmd3.c,v 1.29 2023/02/08 08:24:29 tb Exp $ */
/* $NetBSD: cmd3.c,v 1.8 1997/07/09 05:29:49 mikel Exp $ */
/*
@ -186,8 +186,7 @@ respond(void *v)
* message header and send them off to mail1()
*/
int
_respond(msgvec)
int *msgvec;
_respond(int *msgvec)
{
struct message *mp;
char *cp, *rcv, *replyto;