diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-23 13:33:10 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-23 14:35:37 +0100 |
commit | 8905b599b467f0595cf5874b7e36d9a650f8544a (patch) | |
tree | 7b03b168fabe2742d044923c6722072759a070cd /source3/smbd | |
parent | 4c548048c55ab3b7c79f5317281988b446c7fbf2 (diff) | |
download | samba-8905b599b467f0595cf5874b7e36d9a650f8544a.tar.gz samba-8905b599b467f0595cf5874b7e36d9a650f8544a.tar.bz2 samba-8905b599b467f0595cf5874b7e36d9a650f8544a.zip |
s3: Fix some nonempty blank lines
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 6783308edd..65bb25db59 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1552,7 +1552,7 @@ static void construct_reply_common(struct smb_request *req, const char *inbuf, char *outbuf) { srv_set_message(outbuf,0,0,false); - + SCVAL(outbuf, smb_com, req->cmd); SIVAL(outbuf,smb_rcls,0); SCVAL(outbuf,smb_flg, FLAG_REPLY | (CVAL(inbuf,smb_flg) & FLAG_CASELESS_PATHNAMES)); @@ -2059,11 +2059,11 @@ void check_reload(time_t t) } /* 'printcap cache time = 0' disable the feature */ - + if ( printcap_cache_time != 0 ) { /* see if it's time to reload or if the clock has been set back */ - + if ( (t >= last_printer_reload_time+printcap_cache_time) || (t-last_printer_reload_time < 0) ) { |