summaryrefslogtreecommitdiffstats
path: root/source/rpc_client
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-04 07:36:09 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-04 07:36:09 +0000
commitc41fc06376d1a2b83690612304e85010b5e5f3cf (patch)
tree59f4f1203405c352984a30e0d4eb4d0955248e1e /source/rpc_client
parentdebb471267960e56005a741817ebd227ecfc512a (diff)
downloadsamba-c41fc06376d1a2b83690612304e85010b5e5f3cf.tar.gz
samba-c41fc06376d1a2b83690612304e85010b5e5f3cf.tar.xz
samba-c41fc06376d1a2b83690612304e85010b5e5f3cf.zip
strchr and strrchr are macros when compiling with optimisation in gcc, so we can't redefine them. damn.
Diffstat (limited to 'source/rpc_client')
-rw-r--r--source/rpc_client/cli_spoolss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_client/cli_spoolss.c b/source/rpc_client/cli_spoolss.c
index 2dd492364b7..c5b36fe2a57 100644
--- a/source/rpc_client/cli_spoolss.c
+++ b/source/rpc_client/cli_spoolss.c
@@ -448,7 +448,7 @@ BOOL spoolss_open_printer_ex( const char *printername,
memset(srv_name, 0, sizeof(srv_name));
fstrcpy(srv_name, printername);
- s = strchr(&srv_name[2], '\\');
+ s = strchr_m(&srv_name[2], '\\');
if (s != NULL)
*s = '\0';