diff options
author | Jeremy Allison <jra@samba.org> | 2003-06-27 20:55:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-06-27 20:55:48 +0000 |
commit | 0e983b32fd309de24b923a5c4928635c6c03e89f (patch) | |
tree | 6630f255098fd23e0b0b39f6410f86bb7c682077 /source3/printing | |
parent | 8d31403fe831684daaa45d2784c36ab14e3a822a (diff) | |
download | samba-0e983b32fd309de24b923a5c4928635c6c03e89f.tar.gz samba-0e983b32fd309de24b923a5c4928635c6c03e89f.tar.bz2 samba-0e983b32fd309de24b923a5c4928635c6c03e89f.zip |
Some const correctness. Stop tdb being used as a remote backend. If an
idmap backend is specified cause smbd to ask winbindd (use winbindd if
you want a consistant remote backend solution).
Should work well enough for next beta now...
Jeremy.
(This used to be commit 8f830c509af5976d988a30f0b0aee4ec61dd97a3)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/notify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/notify.c b/source3/printing/notify.c index ee973da211..479d883134 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -480,7 +480,7 @@ void notify_printer_location(int snum, char *location) snum, strlen(location) + 1, location); } -void notify_printer_byname( char *printername, uint32 change, char *value ) +void notify_printer_byname( const char *printername, uint32 change, char *value ) { int snum = print_queue_snum(printername); int type = PRINTER_NOTIFY_TYPE; |