svn commit: r229988 - head/lib/libutil

Bruce Evans brde at optusnet.com.au
Thu Jan 12 10:04:51 UTC 2012


On Wed, 11 Jan 2012, Guy Helmer wrote:

> Log:
>  Fix prototype formatting (indentation, long lines, and continued lines).
>
>  Requested by bde.

Thanks.  This looks good.  Here are a few more fixes (mostly prototype
:ormatting, 2 lines struct member formatting and 1 and 1 missing underscore).

% Index: libutil.h
% ===================================================================
% RCS file: /home/ncvs/src/lib/libutil/libutil.h,v
% retrieving revision 1.64
% diff -u -r1.64 libutil.h
% --- libutil.h	11 Jan 2012 22:45:15 -0000	1.64
% +++ libutil.h	12 Jan 2012 09:49:29 -0000
% @@ -69,8 +69,8 @@
%  /* for properties.c */
%  typedef struct _property {
%  	struct _property *next;
% -	char *name;
% -	char *value;
% +	char	*name;
% +	char	*value;
%  } *properties;
% 
%  #ifdef _SYS_PARAM_H_
% @@ -121,7 +121,7 @@
%  void	properties_free(properties _list);
%  char	*property_find(properties _list, const char *_name);
%  properties
% -	properties_read(int fd);
% +	properties_read(int _fd);
%  int	realhostname(char *_host, size_t _hsize, const struct in_addr *_ip);
%  int	realhostname_sa(char *_host, size_t _hsize, struct sockaddr *_addr,
%  	    int _addrlen);
% @@ -139,8 +139,10 @@
%  #endif
% 
%  #ifdef _PWD_H_
% -int	pw_copy(int _ffd, int _tfd, const struct passwd *_pw, struct passwd *_old_pw);
% -struct passwd *pw_dup(const struct passwd *_pw);
% +int	pw_copy(int _ffd, int _tfd, const struct passwd *_pw,
% +	    struct passwd *_old_pw);
% +struct passwd
% +	*pw_dup(const struct passwd *_pw);
%  int	pw_edit(int _notsetuid);
%  int	pw_equal(const struct passwd *_pw1, const struct passwd *_pw2);
%  void	pw_fini(void);
% @@ -149,21 +151,26 @@
%  char	*pw_make_v7(const struct passwd *_pw);
%  int	pw_mkdb(const char *_user);
%  int	pw_lock(void);
% -struct passwd *pw_scan(const char *_line, int _flags);
% -const char *pw_tempname(void);
% +struct passwd
% +	*pw_scan(const char *_line, int _flags);
% +const char
% +	*pw_tempname(void);
%  int	pw_tmp(int _mfd);
%  #endif
% 
%  #ifdef _GRP_H_
% -int 	gr_copy(int __ffd, int _tfd, const struct group *_gr, struct group *_old_gr);
% -struct group *gr_dup(const struct group *_gr);
% +int 	gr_copy(int __ffd, int _tfd, const struct group *_gr,
% +	    struct group *_old_gr);
% +struct group
% +	*gr_dup(const struct group *_gr);
%  int	gr_equal(const struct group *_gr1, const struct group *_gr2);
%  void	gr_fini(void);
%  int	gr_init(const char *_dir, const char *_master);
%  int	gr_lock(void);
%  char	*gr_make(const struct group *_gr);
%  int	gr_mkdb(void);
% -struct group *gr_scan(const char *_line);
% +struct group
% +	*gr_scan(const char *_line);
%  int	gr_tmp(int _mdf);
%  #endif
%

Bruce


More information about the svn-src-all mailing list