diff options
| author | paul <paul> | 2004-10-13 05:22:18 +0000 | 
|---|---|---|
| committer | paul <paul> | 2004-10-13 05:22:18 +0000 | 
| commit | 42d498658d85e36a7e5910955e7425b1fa2afa69 (patch) | |
| tree | 4745462eb34a84e32ef5d3e1586a3cb5a983626e /lib/sockunion.h | |
| parent | fd79ac918b8feaacebe9719adaac97dffb69137a (diff) | |
2004-10-13 Paul Jakma <paul@dishone.st>
	* (global) more const'ification.
	* sockunion.c: (sockunion_su2str) buffer should be sized
          SU_ADDRSTRLEN.
          (sockunion_log) do not return stack variables, strdup buf before
          return.
        * vty.h: Fix up the VTY_GET_INTEGER macros. Testing caller supplied
          values against ULONG_MAX is daft, when caller probably has passed
          a type that can not hold ULONG_MAX. use a temporary long instead.
          Add VTY_GET_LONG, make VTY_GET_INTEGER_RANGE use it, make
	  VTY_GET_INTEGER a define for VTY_GET_INTEGER_RANGE.
Diffstat (limited to 'lib/sockunion.h')
| -rw-r--r-- | lib/sockunion.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sockunion.h b/lib/sockunion.h index 92e536c121..738df06c50 100644 --- a/lib/sockunion.h +++ b/lib/sockunion.h @@ -93,7 +93,7 @@ int sockunion_cmp (union sockunion *, union sockunion *);  int sockunion_same (union sockunion *, union sockunion *);  char *sockunion_su2str (union sockunion *su); -union sockunion *sockunion_str2su (char *str); +union sockunion *sockunion_str2su (const char *str);  struct in_addr sockunion_get_in_addr (union sockunion *su);  int sockunion_accept (int sock, union sockunion *);  int sockunion_stream_socket (union sockunion *);  | 
