/*
* Principal Author: Brian Wellington
- * $Id: dst_api.c,v 1.62 2011/08/18 17:41:54 marka Exp $
+ * $Id: dst_api.c,v 1.63 2011/08/18 23:46:34 tbox Exp $
*/
/*! \file */
isc_buffer_usedregion(&classb, &r);
if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
- ret = DST_R_WRITEERROR;
+ ret = DST_R_WRITEERROR;
if ((type & DST_TYPE_KEY) != 0)
fprintf(fp, " KEY ");
isc_buffer_usedregion(&textb, &r);
if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
- ret = DST_R_WRITEERROR;
+ ret = DST_R_WRITEERROR;
fputc('\n', fp);
fflush(fp);
/*
- * Portions Copyright (C) 2004-2010 Internet Systems Consortium, Inc. ("ISC")
+ * Portions Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC")
* Portions Copyright (C) 1999-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*%
* Principal Author: Brian Wellington
- * $Id: dst_parse.c,v 1.28 2011/08/18 04:52:35 marka Exp $
+ * $Id: dst_parse.c,v 1.29 2011/08/18 23:46:35 tbox Exp $
*/
#include <config.h>
}
isc_buffer_usedregion(&b, &r);
- fprintf(fp, "%s %.*s\n", s, (int)r.length, r.base);
+ fprintf(fp, "%s %.*s\n", s, (int)r.length, r.base);
}
/* Add the metadata tags */
isc_buffer_init(&b, buffer, sizeof(buffer));
result = dns_time32_totext(when, &b);
- if (result != ISC_R_SUCCESS) {
- fclose(fp);
- return (DST_R_INVALIDPRIVATEKEY);
- }
+ if (result != ISC_R_SUCCESS) {
+ fclose(fp);
+ return (DST_R_INVALIDPRIVATEKEY);
+ }
isc_buffer_usedregion(&b, &r);
- fprintf(fp, "%s %.*s\n", timetags[i], (int)r.length,
- r.base);
+ fprintf(fp, "%s %.*s\n", timetags[i], (int)r.length,
+ r.base);
}
}