diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-18 00:36:28 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-20 13:43:09 -0700 |
commit | 9561eca1ad28afee6dcd0aebea3dd20a154ec481 (patch) | |
tree | 9cf31d23bf76af90d732b6439af60e4fdea50703 /src | |
parent | 1b1cf8072b2559e15ac440d5484a29a81d6918c6 (diff) |
Constify filename argument to IceLockAuthFile & IceUnlockAuthFile
Needed to fix const string warnings in iceauth - functions already
copy provided arguments to temporary local buffer for modifications.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/authutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/authutil.c b/src/authutil.c index ad29dbb..96ce3a0 100644 --- a/src/authutil.c +++ b/src/authutil.c @@ -128,7 +128,7 @@ IceAuthFileName (void) int IceLockAuthFile ( - char *file_name, + const char *file_name, int retries, int timeout, long dead @@ -204,7 +204,7 @@ IceLockAuthFile ( void IceUnlockAuthFile ( - char *file_name + const char *file_name ) { #ifndef WIN32 |