Changeset 2983
- Timestamp:
- 03/09/10 16:38:40 (6 months ago)
- Location:
- trunk/OpenDNSSEC
- Files:
-
- 3 modified
-
NEWS (modified) (1 diff)
-
enforcer/ksm/ksm_import.c (modified) (2 diffs)
-
enforcer/utils/ksmutil.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/OpenDNSSEC/NEWS
r2949 r2983 19 19 * Zonefetch.xml now accepts hmac-md5, which is an alias for 20 20 hmac-md5.sig-alg.reg.int. 21 * Fix issue of importing keys into kasp leaving random strings in the 22 retire date. 21 23 22 24 -
trunk/OpenDNSSEC/enforcer/ksm/ksm_import.c
r2511 r2983 339 339 StrAppend(&columns, "policy_id, HSMkey_id, securitymodule_id, size, algorithm, state, "); 340 340 StrAppend(&columns, KsmKeywordStateValueToName(state)); 341 if (opt_time != NULL) {341 if (opt_time[0] != '\0') { 342 342 StrAppend(&columns, ", retire, fixedDate"); 343 343 } … … 351 351 DisAppendInt(&sql, state); 352 352 DisAppendString(&sql, time); 353 if (opt_time != NULL) {353 if (opt_time[0] != '\0') { 354 354 DisAppendString(&sql, opt_time); 355 355 DisAppendInt(&sql, 1); -
trunk/OpenDNSSEC/enforcer/utils/ksmutil.c
r2898 r2983 2374 2374 datetime.tm_hour, datetime.tm_min, datetime.tm_sec); 2375 2375 } 2376 } else { 2377 form_opt_time[0] = '\0'; 2376 2378 } 2377 2379
