s3:smbd: make globals in utmp.c static const
authorStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 07:51:41 +0000 (08:51 +0100)
committerStefan Metzmacher <metze@samba.org>
Thu, 8 Jan 2009 11:22:18 +0000 (12:22 +0100)
commit0713f9812474ef04df879772f0e3abcdb9e28180
treef9228ecbb5fe77c8d7cd4033de9d9869ad76a4c8
parentd9e81664e5afc9576749241b9e445e232d5f83d6
s3:smbd: make globals in utmp.c 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/utmp.c