Fix check for auth slash split PAZ-899
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 8 Nov 2013 18:07:34 +0000 (19:07 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 8 Nov 2013 18:07:34 +0000 (19:07 +0100)
src/connection.c

index d2c9b70..b499b9d 100644 (file)
@@ -452,7 +452,7 @@ static int connection_connect(struct connection *con, iochan_man_t iochan_man)
     {
         /* allow splitting user and reset with a blank always */
         const char *cp1 = strchr(auth, ' ');
-        if (!cp1 && sru && *sru_version)
+        if (!cp1 && sru && *sru)
             cp1 =  strchr(auth, '/');
         if (!cp1)
         {