- (bal) Since we don't support platforms lacking u_int_64. We may

as well clean out some of those evil #ifdefs
This commit is contained in:
Ben Lindstrom 2003-04-27 18:01:37 +00:00
parent 93b6b776ad
commit 796b9a5495
3 changed files with 3 additions and 7 deletions

View File

@ -1,6 +1,8 @@
20030427 20030427
- (bal) Bug #541: return; was dropped by mistake. Reported by - (bal) Bug #541: return; was dropped by mistake. Reported by
furrier@iglou.com furrier@iglou.com
- (bal) Since we don't support platforms lacking u_int_64. We may
as well clean out some of those evil #ifdefs
20030409 20030409
- (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report
@ -1341,4 +1343,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284; save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@ ok provos@
$Id: ChangeLog,v 1.2659 2003/04/27 17:55:33 mouring Exp $ $Id: ChangeLog,v 1.2660 2003/04/27 18:01:37 mouring Exp $

View File

@ -165,7 +165,6 @@ buffer_get_int(Buffer *buffer)
return GET_32BIT(buf); return GET_32BIT(buf);
} }
#ifdef HAVE_U_INT64_T
u_int64_t u_int64_t
buffer_get_int64(Buffer *buffer) buffer_get_int64(Buffer *buffer)
{ {
@ -174,7 +173,6 @@ buffer_get_int64(Buffer *buffer)
buffer_get(buffer, (char *) buf, 8); buffer_get(buffer, (char *) buf, 8);
return GET_64BIT(buf); return GET_64BIT(buf);
} }
#endif
/* /*
* Stores integers in the buffer, msb first. * Stores integers in the buffer, msb first.
@ -197,7 +195,6 @@ buffer_put_int(Buffer *buffer, u_int value)
buffer_append(buffer, buf, 4); buffer_append(buffer, buf, 4);
} }
#ifdef HAVE_U_INT64_T
void void
buffer_put_int64(Buffer *buffer, u_int64_t value) buffer_put_int64(Buffer *buffer, u_int64_t value)
{ {
@ -206,7 +203,6 @@ buffer_put_int64(Buffer *buffer, u_int64_t value)
PUT_64BIT(buf, value); PUT_64BIT(buf, value);
buffer_append(buffer, buf, 8); buffer_append(buffer, buf, 8);
} }
#endif
/* /*
* Returns an arbitrary binary string from the buffer. The string cannot * Returns an arbitrary binary string from the buffer. The string cannot

View File

@ -29,10 +29,8 @@ void buffer_put_short(Buffer *, u_short);
u_int buffer_get_int(Buffer *); u_int buffer_get_int(Buffer *);
void buffer_put_int(Buffer *, u_int); void buffer_put_int(Buffer *, u_int);
#ifdef HAVE_U_INT64_T
u_int64_t buffer_get_int64(Buffer *); u_int64_t buffer_get_int64(Buffer *);
void buffer_put_int64(Buffer *, u_int64_t); void buffer_put_int64(Buffer *, u_int64_t);
#endif
int buffer_get_char(Buffer *); int buffer_get_char(Buffer *);
void buffer_put_char(Buffer *, int); void buffer_put_char(Buffer *, int);