From f64b6ae0cc56a8ea131c083e8ef6416fe80c24ff Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Fri, 4 Apr 2003 02:10:17 +0000 Subject: [PATCH] fixed one incorrect fprintf to stderr git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11968 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/push/ChangeLog | 4 ++++ appl/push/push.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/appl/push/ChangeLog b/appl/push/ChangeLog index b89efd0ca..e90e34e85 100644 --- a/appl/push/ChangeLog +++ b/appl/push/ChangeLog @@ -1,3 +1,7 @@ +2003-04-03 Assar Westerlund + + * push.c: fixed one incorrect fprintf to stderr + 2003-03-18 Love Hörnquist Åstrand * push.c: add names of pop states, add some more debugging and use diff --git a/appl/push/push.c b/appl/push/push.c index 8796ac5fc..1d51992a8 100644 --- a/appl/push/push.c +++ b/appl/push/push.c @@ -420,7 +420,7 @@ doit(int s, state = QUIT; net_write (s, "QUIT\r\n", 6); if (verbose > 1) - fprintf (stderr, "QUIT\r\n", 6); + fprintf (stderr, "QUIT\r\n"); break; } } else if (++state == STAT) {