s3:smbd: make const globals in mangle_hash2.c really static const
authorStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 07:57:52 +0000 (08:57 +0100)
committerStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 11:22:19 +0000 (12:22 +0100)
commitc19ed7669c3621142fd3634634f58bdb9920ddaf
tree16bb216a2c6d9672a7cb9a603e081088527917e2
parent0713f9812474ef04df879772f0e3abcdb9e28180
s3:smbd: make const globals 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/mangle_hash2.c