mirror of git://anongit.mindrot.org/openssh.git
- (stevesk) change getopt() declaration
This commit is contained in:
parent
4f8e66929b
commit
60193f70f7
|
@ -1,3 +1,6 @@
|
|||
20010714
|
||||
- (stevesk) change getopt() declaration
|
||||
|
||||
20010713
|
||||
- (djm) Enable /etc/nologin check on PAM systems, as some lack the
|
||||
pam_nologin module. Report from William Yodlowsky
|
||||
|
@ -6025,4 +6028,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1399 2001/07/14 03:22:53 djm Exp $
|
||||
$Id: ChangeLog,v 1.1400 2001/07/14 16:05:55 stevesk Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: getopt.h,v 1.1 2001/07/14 03:22:54 djm Exp $ */
|
||||
/* $Id: getopt.h,v 1.2 2001/07/14 16:05:55 stevesk Exp $ */
|
||||
|
||||
#ifndef _GETOPT_H
|
||||
#define _GETOPT_H
|
||||
|
@ -7,7 +7,7 @@
|
|||
|
||||
#ifndef HAVE_GETOPT_H
|
||||
|
||||
int getopt(int argc, char **argv, char *opts);
|
||||
int getopt(int argc, char * const *argv, const char *opts);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue