From: Joseph Sutton Date: Tue, 8 Aug 2023 00:20:31 +0000 (+1200) Subject: s3:printing: Fix code spelling X-Git-Tag: tevent-0.16.0~1137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6489f31378eb79647fd96188eafaec6bde8a9d98;p=thirdparty%2Fsamba.git s3:printing: Fix code spelling Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/printing/printer_list.c b/source3/printing/printer_list.c index 3430d2b7d17..7fd07ed1f34 100644 --- a/source3/printing/printer_list.c +++ b/source3/printing/printer_list.c @@ -98,7 +98,7 @@ NTSTATUS printer_list_get_printer(TALLOC_CTX *mem_ctx, PL_DATA_FORMAT, &time_h, &time_l, &nstr, &cstr, &lstr); if (ret == -1) { - DEBUG(1, ("Failed to un pack printer data\n")); + DEBUG(1, ("Failed to unpack printer data\n")); status = NT_STATUS_INTERNAL_DB_CORRUPTION; goto done; } @@ -249,7 +249,7 @@ NTSTATUS printer_list_get_last_refresh(time_t *last_refresh) PL_TSTAMP_FORMAT, &time_h, &time_l); TALLOC_FREE(data.dptr); if (ret == -1) { - DEBUG(1, ("Failed to un pack printer data\n")); + DEBUG(1, ("Failed to unpack printer data\n")); status = NT_STATUS_INTERNAL_DB_CORRUPTION; goto done; } @@ -354,7 +354,7 @@ static int printer_list_clean_fn(struct db_record *rec, void *private_data) PL_DATA_FORMAT, &time_h, &time_l, &name, &comment, &location); if (ret == -1) { - DEBUG(1, ("Failed to un pack printer data\n")); + DEBUG(1, ("Failed to unpack printer data\n")); state->status = NT_STATUS_INTERNAL_DB_CORRUPTION; return -1; } @@ -427,7 +427,7 @@ static int printer_list_exec_fn(struct db_record *rec, void *private_data) PL_DATA_FORMAT, &time_h, &time_l, &name, &comment, &location); if (ret == -1) { - DEBUG(1, ("Failed to un pack printer data\n")); + DEBUG(1, ("Failed to unpack printer data\n")); state->status = NT_STATUS_INTERNAL_DB_CORRUPTION; return -1; }