summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-07-04 17:25:54 +0000
committerKevin Steves <stevesk@pobox.com>2001-07-04 17:25:54 +0000
commitd009ae3d04b7ea4e5385e2ca98394d8ddfefda93 (patch)
tree4e16f70a691750f235125b759d5f11e68c1dfc7b
parentf70b59c0393722baf3af24bedff7ba03553b7924 (diff)
- (stevesk) sync misc.h
-rw-r--r--ChangeLog3
-rw-r--r--misc.h21
2 files changed, 13 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index bfcd160e..161c4dde 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -132,6 +132,7 @@
cleanup all channels.
- (bal) forget a few new files in sync up.
- (bal) Makefile fix up requires scard.c
+ - (stevesk) sync misc.h
20010629
- (bal) Removed net_aton() since we don't use it any more
@@ -5959,4 +5960,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1378 2001/07/04 05:40:19 mouring Exp $
+$Id: ChangeLog,v 1.1379 2001/07/04 17:25:54 stevesk Exp $
diff --git a/misc.h b/misc.h
index 5f0b0aa4..fc564527 100644
--- a/misc.h
+++ b/misc.h
@@ -12,14 +12,16 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-char *chop(char *);
-char *strdelim(char **);
-void set_nonblock(int);
-void unset_nonblock(int);
-int a2port(const char *);
-char *cleanhostname(char *);
-char *colon(char *);
-long convtime(const char *);
+char *chop(char *);
+char *strdelim(char **);
+void set_nonblock(int);
+void unset_nonblock(int);
+int a2port(const char *);
+char *cleanhostname(char *);
+char *colon(char *);
+long convtime(const char *);
+
+struct passwd *pwcopy(struct passwd *);
typedef struct arglist arglist;
struct arglist {
@@ -27,8 +29,7 @@ struct arglist {
int num;
int nalloc;
};
-
-void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
+void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
/* wrapper for signal interface */
typedef void (*mysig_t)(int);