Changeset f809816 in mod_gnutls for src/gnutls_io.c
- Timestamp:
- Jan 11, 2013, 12:57:17 AM (8 years ago)
- Branches:
- debian/master, debian/stretch-backports, jessie-backports
- Children:
- 241fee8
- Parents:
- 54b3065 (diff), f8ffc43 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
r54b3065 rf809816 73 73 if (buffer->length > inl) { 74 74 /* we have have enough to fill the caller's buffer */ 75 mem cpy(in, buffer->value, inl);75 memmove(in, buffer->value, inl); 76 76 buffer->value += inl; 77 77 buffer->length -= inl; … … 79 79 else { 80 80 /* swallow remainder of the buffer */ 81 mem cpy(in, buffer->value, buffer->length);81 memmove(in, buffer->value, buffer->length); 82 82 inl = buffer->length; 83 83 buffer->value = NULL; … … 354 354 } 355 355 356 #define HANDSHAKE_MAX_TRIES 10 0356 #define HANDSHAKE_MAX_TRIES 1024 357 357 static int gnutls_do_handshake(mgs_handle_t * ctxt) 358 358 {
Note: See TracChangeset
for help on using the changeset viewer.