]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
instance isn't 'const' in close
authorAlan T. DeKok <aland@freeradius.org>
Mon, 16 Oct 2017 19:30:40 +0000 (15:30 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 16 Oct 2017 19:30:40 +0000 (15:30 -0400)
src/lib/io/application.h

index f1472b640b2d2c9d95f62ca0c67f6bdbca612754..a25340058fc2b824b244d3f63c31edab21765dca 100644 (file)
@@ -110,7 +110,7 @@ typedef struct fr_app_io_t {
        fr_io_encode_t                  encode;         //!< Pack VALUE_PAIRs back into a byte array.
        fr_io_signal_t                  flush;          //!< Flush the data when the socket is ready for writing.
        fr_io_signal_t                  error;          //!< There was an error on the socket.
-       fr_io_signal_t                  close;          //!< Close the transport.
+       fr_io_open_t                    close;          //!< Close the transport.
        fr_io_nak_t                     nak;            //!< Function to send a NAK.
 } fr_app_io_t;
 #endif