diff options
author | Jeremy Allison <jra@samba.org> | 2005-06-02 23:18:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:57:05 -0500 |
commit | ed5e7ff9f184fd36b4344c958f145cc4a4987c71 (patch) | |
tree | ac38252c75d1658b45ee7c733a0cdb012b624877 /source3/printing | |
parent | 503914b2c506dbe7cfd1fa56f93b44860f48e6a3 (diff) | |
download | samba-ed5e7ff9f184fd36b4344c958f145cc4a4987c71.tar.gz samba-ed5e7ff9f184fd36b4344c958f145cc4a4987c71.tar.bz2 samba-ed5e7ff9f184fd36b4344c958f145cc4a4987c71.zip |
r7200: Don't use memset, use SET_STAT_INVALID (has the same effect).
Jeremy.
(This used to be commit 0b6f87d5e14da461bd2b1c3a4e6f47a69d2cd1c4)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index caacfef48f..8564b7c173 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1152,8 +1152,8 @@ static int file_version_is_newer(connection_struct *conn, fstring new_file, fstr SMB_STRUCT_STAT stat_buf; BOOL bad_path; - ZERO_STRUCT(st); - ZERO_STRUCT(stat_buf); + SET_STAT_INVALID(st); + SET_STAT_INVALID(stat_buf); new_create_time = (time_t)0; old_create_time = (time_t)0; @@ -1265,7 +1265,7 @@ static uint32 get_correct_cversion(const char *architecture, fstring driverpath_ SMB_STRUCT_STAT st; connection_struct *conn; - ZERO_STRUCT(st); + SET_STAT_INVALID(st); *perr = WERR_INVALID_PARAM; |