Changeset 745 for trunk/server/source3/utils/net_dns.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/utils/net_dns.c
r414 r745 1 2 1 /* 3 2 Samba Unix/Linux Dynamic DNS Update … … 11 10 the Free Software Foundation; either version 3 of the License, or 12 11 (at your option) any later version. 13 12 14 13 This program is distributed in the hope that it will be useful, 15 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 16 GNU General Public License for more details. 18 17 19 18 You should have received a copy of the GNU General Public License 20 19 along with this program. If not, see <http://www.gnu.org/licenses/>. … … 23 22 #include "includes.h" 24 23 #include "utils/net.h" 25 #include " dns.h"24 #include "../lib/addns/dns.h" 26 25 27 26 #if defined(WITH_DNS_UPDATES) 28 29 27 /* 30 28 * Silly prototype to get rid of a warning … … 56 54 return ERROR_DNS_NO_MEMORY; 57 55 } 58 56 59 57 err = dns_open_connection( pszServerName, DNS_TCP, mem_ctx, &conn ); 60 58 if (!ERR_DNS_IS_OK(err)) { … … 115 113 DNS_SRV_WIN2000 ); 116 114 } 117 115 118 116 if (!ERR_DNS_IS_OK(err)) 119 117 goto error; 120 121 118 122 119 err = dns_sign_update(req, gss_context, keyname,
Note:
See TracChangeset
for help on using the changeset viewer.