diff options
author | Herb Lewis <herb@samba.org> | 2001-12-11 18:08:48 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-12-11 18:08:48 +0000 |
commit | ee4d68211542f1d3bf4422173b8f8c263edac9c2 (patch) | |
tree | 803a5050b66b98e961340c8e15b97e307506d568 /source3/nsswitch | |
parent | 5f93b2dce4d723466d1d3c94f349179c66d41fde (diff) | |
download | samba-ee4d68211542f1d3bf4422173b8f8c263edac9c2.tar.gz samba-ee4d68211542f1d3bf4422173b8f8c263edac9c2.tar.bz2 samba-ee4d68211542f1d3bf4422173b8f8c263edac9c2.zip |
fix for IRIX compilers
(This used to be commit b110f57e49bcb4e3c648020850ee18d1888b9152)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/wbinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 9e85ce3041..470fa024b9 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -479,8 +479,8 @@ int main(int argc, char **argv) int opt; poptContext pc; - char *string_arg; - int int_arg; + static char *string_arg; + static int int_arg; BOOL got_command = False; struct poptOption long_options[] = { |