diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 17:53:38 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 17:53:38 +0200 |
commit | 0218669d627e2e2f20d8294cff5bb7803b539a7a (patch) | |
tree | 5d533861e59995121c9641a5da633ed1bec01a45 /source4/client | |
parent | a665f5f5a177f1074a4b488b35fcd82f74766f75 (diff) | |
download | samba-0218669d627e2e2f20d8294cff5bb7803b539a7a.tar.gz samba-0218669d627e2e2f20d8294cff5bb7803b539a7a.tar.bz2 samba-0218669d627e2e2f20d8294cff5bb7803b539a7a.zip |
Remove include/local.h and move defines to more appropriate places.
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index a61d1b4ca4..56b923974b 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -53,6 +53,12 @@ #include "param/param.h" #include "librpc/rpc/dcerpc.h" +/* the default pager to use for the client "more" command. Users can + * override this with the PAGER environment variable */ +#ifndef DEFAULT_PAGER +#define DEFAULT_PAGER "more" +#endif + struct smbclient_context { char *remote_cur_dir; struct smbcli_state *cli; |