diff options
author | Gerald Carter <jerry@samba.org> | 2003-08-22 13:39:49 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-08-22 13:39:49 +0000 |
commit | 9554a661c2400e9148f7572e4de20064faea5f2a (patch) | |
tree | b107f4576fa2945ead23ee964eceaab4aed21c54 | |
parent | 1278d2496162c6427729a795dd940b9863261a6d (diff) | |
download | samba-9554a661c2400e9148f7572e4de20064faea5f2a.tar.gz samba-9554a661c2400e9148f7572e4de20064faea5f2a.tar.xz samba-9554a661c2400e9148f7572e4de20064faea5f2a.zip |
fix compile problem (stray character)
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index 83f85e9187b..c0d0e501f3d 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -2380,7 +2380,7 @@ BOOL lp_add_printer(const char *pszPrintername, int iDefaultService) /* the printer name is set to the service name. */ string_set(&ServicePtrs[i]->szPrintername, pszPrintername); string_set(&ServicePtrs[i]->comment, comment); -` + /* Printers cannot be read_only. */ ServicePtrs[i]->bRead_only = False; /* No share modes on printer services. */ |