diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-04-03 08:18:40 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-04-03 08:23:02 +0200 |
commit | 31d8d231eb9377df474746a822d380c5d68d7ad6 (patch) | |
tree | ab5619a06e3944f016d7779b8313acb8bbf1c06a /misc.h | |
parent | upstream: whitespace (tab after space) (diff) | |
download | openssh-31d8d231eb9377df474746a822d380c5d68d7ad6.tar.xz openssh-31d8d231eb9377df474746a822d380c5d68d7ad6.zip |
upstream: highly polished whitespace, mostly fixing spaces-for-tab
and bad indentation on continuation lines. Prompted by GHPR#185
OpenBSD-Commit-ID: e5c81f0cbdcc6144df1ce468ec1bac366d8ad6e9
Diffstat (limited to 'misc.h')
-rw-r--r-- | misc.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.94 2021/03/03 08:42:52 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.95 2021/04/03 06:18:40 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -117,9 +117,9 @@ struct arglist { u_int nalloc; }; void addargs(arglist *, char *, ...) - __attribute__((format(printf, 2, 3))); + __attribute__((format(printf, 2, 3))); void replacearg(arglist *, u_int, char *, ...) - __attribute__((format(printf, 3, 4))); + __attribute__((format(printf, 3, 4))); void freeargs(arglist *); int tun_open(int, int, char **); @@ -174,7 +174,7 @@ const char *iptos2str(int); void mktemp_proto(char *, size_t); void child_set_env(char ***envp, u_int *envsizep, const char *name, - const char *value); + const char *value); int argv_split(const char *, int *, char ***); char *argv_assemble(int, char **argv); @@ -182,9 +182,9 @@ int exited_cleanly(pid_t, const char *, const char *, int); struct stat; int safe_path(const char *, struct stat *, const char *, uid_t, - char *, size_t); + char *, size_t); int safe_path_fd(int, const char *, struct passwd *, - char *err, size_t errlen); + char *err, size_t errlen); /* authorized_key-style options parsing helpers */ int opt_flag(const char *opt, int allow_negate, const char **optsp); |