summaryrefslogtreecommitdiff
path: root/libavformat/httpauth.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-06 14:44:33 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-06 14:44:33 +0200
commitd2277aa7e2d2aacec3f6d7791ef5c2528541f140 (patch)
treec74b6686a5797fed8dd74f2b9b1147f3506d6bfc /libavformat/httpauth.h
parentff6841c6bb2d35f8d461419e45d59be7542d03fe (diff)
avformat/httpauth: Change enum to int, which is accessed via AVOption as int
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/httpauth.h')
-rw-r--r--libavformat/httpauth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/httpauth.h b/libavformat/httpauth.h
index fc17c94859..9c15a38097 100644
--- a/libavformat/httpauth.h
+++ b/libavformat/httpauth.h
@@ -56,7 +56,7 @@ typedef struct HTTPAuthState {
/**
* The currently chosen auth type.
*/
- HTTPAuthType auth_type;
+ int auth_type;
/**
* Authentication realm
*/