diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-04-24 11:30:45 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-04-24 11:30:45 +0000 |
commit | f0442220fa57c77c6691f3301bc0d80635d0b23f (patch) | |
tree | 3a6eb57d065b9fe56ec231fc099b35607f1eb907 /source3/nmbd | |
parent | e5b79f3d5b9f771032bdf92de177dc57f150d23a (diff) | |
download | samba-f0442220fa57c77c6691f3301bc0d80635d0b23f.tar.gz samba-f0442220fa57c77c6691f3301bc0d80635d0b23f.tar.bz2 samba-f0442220fa57c77c6691f3301bc0d80635d0b23f.zip |
fixed a parameter bug found by insure
(This used to be commit a559a8066fb162c4da0a5046c49a105eabf131d9)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_workgroupdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_workgroupdb.c b/source3/nmbd/nmbd_workgroupdb.c index 5514e78dc1..485253680b 100644 --- a/source3/nmbd/nmbd_workgroupdb.c +++ b/source3/nmbd/nmbd_workgroupdb.c @@ -156,7 +156,7 @@ static struct work_record *remove_workgroup_from_subnet(struct subnet_record *su **************************************************************************/ struct work_record *find_workgroup_on_subnet(struct subnet_record *subrec, - fstring name) + const char *name) { struct work_record *ret; |