2018-09-10 Fred Gleason <fredg@paravelsystems.com>

* Quadrupled the length of strings in 'struct rd_cart' in the
	'rivwebcapi' to accomodate UTF-8 characters.
This commit is contained in:
Fred Gleason
2018-09-10 12:21:25 -04:00
parent f13aa1e3ae
commit 5179ba9563
41 changed files with 284 additions and 272 deletions

View File

@@ -260,10 +260,10 @@
</para>
<programlisting>
struct rd_log {
char log_name[11];
char log_service[11];
char log_description[65];
char log_origin_username[256];
char log_name[41];
char log_service[41];
char log_description[257];
char log_origin_username[1021];
struct tm log_origin_datetime;
struct tm log_purge_date;
struct tm log_link_datetime;
@@ -280,6 +280,7 @@
};
All character arrays above are the sizes listed and must be null-terminated.
Character encoding is UTF-8.
</programlisting>