diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-12 17:35:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-12 23:24:11 +0200 |
commit | b88bdedf9c20793ee553612c897156f2f9a31dc7 (patch) | |
tree | b2e69aaf59c1ac203316efcf09d7793edbf01d05 /lib/altsvc.h | |
parent | 17f2dcf6b202eecb33ef316262b20791919a29ca (diff) | |
download | curl-b88bdedf9c20793ee553612c897156f2f9a31dc7.tar.gz |
altsvc: remove the num field from the altsvc struct
It was superfluous since we have the list.size alredy
Reported-by: Jay Satiro
Fixes #5553
Closes #5563
Diffstat (limited to 'lib/altsvc.h')
-rw-r--r-- | lib/altsvc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/altsvc.h b/lib/altsvc.h index 248e71eef..578a4fbfb 100644 --- a/lib/altsvc.h +++ b/lib/altsvc.h @@ -52,7 +52,6 @@ struct altsvc { struct altsvcinfo { char *filename; struct curl_llist list; /* list of entries */ - size_t num; /* number of alt-svc entries */ long flags; /* the publicly set bitmask */ }; |