X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstream-ssl.h;h=dd2a16ee889762283d2ff2174872a100ad281240;hb=b5e80aecc4b10f73196f272598bac0644f196471;hp=3c2a8986a5215b26e0f1038a364f6d299bd71810;hpb=9467fe624698a9b72f81bb1ddfce33a5fc85281c;p=openvswitch diff --git a/lib/stream-ssl.h b/lib/stream-ssl.h index 3c2a8986..dd2a16ee 100644 --- a/lib/stream-ssl.h +++ b/lib/stream-ssl.h @@ -25,7 +25,12 @@ void stream_ssl_set_certificate_file(const char *file_name); void stream_ssl_set_ca_cert_file(const char *file_name, bool bootstrap); void stream_ssl_set_peer_ca_cert_file(const char *file_name); -#define STREAM_SSL_LONG_OPTIONS \ +/* Define the long options for SSL support. + * + * Note that the definition includes a final comma, and therefore a comma + * must not be supplied when using the definition. This is done so that + * compilation succeeds whether or not HAVE_OPENSSL is defined. */ +#define STREAM_SSL_LONG_OPTIONS \ {"private-key", required_argument, 0, 'p'}, \ {"certificate", required_argument, 0, 'c'}, \ {"ca-cert", required_argument, 0, 'C'},