s3:smbd: make static const in mangle_hash2.c really static const
authorStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 08:02:21 +0000 (09:02 +0100)
committerStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 11:22:19 +0000 (12:22 +0100)
commit9ae0c5e5a7375ef58e4dff84eb154be77564d205
tree70103e8933b8afab09f09c1d8022810f80ee748a
parentc19ed7669c3621142fd3634634f58bdb9920ddaf
s3:smbd: make static const in mangle_hash2.c really static const

const char *foo, means a non-const pointer to
a const char.

const char * const foo, means a const pointer to
a const char.

char * const foo, would mean a const pointer to
a non-const char.

metze
source3/smbd/trans2.c