=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/misc.h,v retrieving revision 1.12.10.2 retrieving revision 1.13 diff -u -r1.12.10.2 -r1.13 --- src/usr.bin/ssh/misc.h 2005/03/10 17:15:04 1.12.10.2 +++ src/usr.bin/ssh/misc.h 2004/05/08 00:01:37 1.13 @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.12.10.2 2005/03/10 17:15:04 brad Exp $ */ +/* $OpenBSD: misc.h,v 1.13 2004/05/08 00:01:37 deraadt Exp $ */ /* * Author: Tatu Ylonen @@ -12,15 +12,12 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* misc.c */ - char *chop(char *); char *strdelim(char **); -int set_nonblock(int); -int unset_nonblock(int); +void set_nonblock(int); +void unset_nonblock(int); void set_nodelay(int); int a2port(const char *); -char *hpdelim(char **); char *cleanhostname(char *); char *colon(char *); long convtime(const char *); @@ -30,22 +27,9 @@ typedef struct arglist arglist; struct arglist { char **list; - u_int num; - u_int nalloc; + int num; + int nalloc; }; void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); -/* tildexpand.c */ - char *tilde_expand_filename(const char *, uid_t); - -/* readpass.c */ - -#define RP_ECHO 0x0001 -#define RP_ALLOW_STDIN 0x0002 -#define RP_ALLOW_EOF 0x0004 -#define RP_USE_ASKPASS 0x0008 - -char *read_passphrase(const char *, int); -int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2))); -int read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);