diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-24 13:19:00 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-24 13:19:00 +0000 |
commit | f4e485117a0dea627addfb8518e6517c7104fd9e (patch) | |
tree | 6caaaa42897ddc169de7d23990725cf7af2a6bdb /source4/lib | |
parent | 7befc0648e4366980b7efdf31cc946ea11de5101 (diff) | |
download | samba-f4e485117a0dea627addfb8518e6517c7104fd9e.tar.gz samba-f4e485117a0dea627addfb8518e6517c7104fd9e.tar.bz2 samba-f4e485117a0dea627addfb8518e6517c7104fd9e.zip |
* fixed byte order in epmapper parsing
* allow rpc transport to be specified on command line in smbtorture
(This used to be commit 8a82050fd6f45bcdb31c2c365eaed5fc12599e4f)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util.c b/source4/lib/util.c index 64e3dfe88c..c9c38ddd33 100644 --- a/source4/lib/util.c +++ b/source4/lib/util.c @@ -467,7 +467,7 @@ uint32 interpret_addr(const char *str) if (strcmp(str,"255.255.255.255") == 0) return(0xFFFFFFFF); - /* if it's in the form of an IP address then get the lib to interpret it */ + /* if it's in the form of an IP address then get the lib to interpret it */ if (is_ipaddress(str)) { res = inet_addr(str); } else { |